From 75c5822c9cdf62f7174618da44a5bd32a67d0b80 Mon Sep 17 00:00:00 2001 From: Dave Bunten Date: Thu, 11 Jan 2024 05:43:46 -0700 Subject: [PATCH 1/2] Add IN Carta test data from Colas Lab (#141) * add module for shrinking in carta dataset * add test datasets created from module * add citation reference * linting * linting and module snakecase * linting * remove typing imports * remove unused imports remove file * clarity in citation file * linting * simplify and add comments * Apply suggestions from code review Co-authored-by: Gregory Way * add names of data authors; adjust notes content * add comments to further clarify the operations * use shortened filename * rename example data files --------- Co-authored-by: Gregory Way --- .gitignore | 3 + CITATION.cff | 17 ++ .../shrink_colas_lab_data_for_tests.py | 65 ++++++++ .../in-carta/colas-lab/test-in-carta-0.csv | 145 ++++++++++++++++++ .../in-carta/colas-lab/test-in-carta-1.csv | 145 ++++++++++++++++++ .../in-carta/colas-lab/test-in-carta-2.csv | 145 ++++++++++++++++++ .../in-carta/colas-lab/test-in-carta-3.csv | 145 ++++++++++++++++++ 7 files changed, 665 insertions(+) create mode 100644 tests/data/in-carta/colas-lab/shrink_colas_lab_data_for_tests.py create mode 100644 tests/data/in-carta/colas-lab/test-in-carta-0.csv create mode 100644 tests/data/in-carta/colas-lab/test-in-carta-1.csv create mode 100644 tests/data/in-carta/colas-lab/test-in-carta-2.csv create mode 100644 tests/data/in-carta/colas-lab/test-in-carta-3.csv diff --git a/.gitignore b/.gitignore index e8e01e4c..0bfa5437 100644 --- a/.gitignore +++ b/.gitignore @@ -135,3 +135,6 @@ dmypy.json # parsl ignores runinfo + +# test data ignores +tests/in-carta/colas-lab/data diff --git a/CITATION.cff b/CITATION.cff index 4d228dde..91a78d87 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -178,3 +178,20 @@ references: notes: >- MapReduce techniques are used via Parsl apps and workflow configuration to help achieve scalable data engineering for CytoTable. + - authors: + - family-names: Lamba + given-names: Aashna + - family-names: Colas + given-names: Alexandre + date-accessed: "2024-01-09" + title: Colas Lab Example IN Carta Dataset + type: data + notes: >- + The Colas Lab provided access to a single-cell dataset exported from + IN Carta Image Analysis Software (Molecular Devices) for + use within CytoTable tests for furthering development efforts. + A modified testing dataset appears within this project + under `tests/data/in-carta/colas-lab`. + See: + - https://sbpdiscovery.org/our-scientists/alexandre-colas-phd + - https://www.moleculardevices.com/products/cellular-imaging-systems/acquisition-and-analysis-software/in-carta-image-analysis-software diff --git a/tests/data/in-carta/colas-lab/shrink_colas_lab_data_for_tests.py b/tests/data/in-carta/colas-lab/shrink_colas_lab_data_for_tests.py new file mode 100644 index 00000000..68d81bf3 --- /dev/null +++ b/tests/data/in-carta/colas-lab/shrink_colas_lab_data_for_tests.py @@ -0,0 +1,65 @@ +""" +Shrink datasets from Colas Lab from IN Carta provided as collection of CSV's. + +Note: built to be run from CytoTable poetry dev environment from project base, e.g.: +`poetry run python tests/data/in-carta/colas-lab/shrink_colas_lab_data_for_tests.py` +""" + +import pathlib + +import duckdb +from pyarrow import csv + +# set a path for local and target data dir +SOURCE_DATA_DIR = "tests/data/in-carta/colas-lab/data" +TARGET_DATA_DIR = "tests/data/in-carta/colas-lab" + +# build a collection of schema +schema_collection = [] +for data_file in pathlib.Path(SOURCE_DATA_DIR).rglob("*.csv"): + with duckdb.connect() as ddb: + # read the csv file as a pyarrow table and extract detected schema + schema_collection.append( + { + "file": data_file, + "schema": ddb.execute( + f""" + SELECT * + FROM read_csv_auto('{data_file}') + """ + ) + .arrow() + .schema, + } + ) + +# determine if the schema are exactly alike +for schema in schema_collection: + for schema_to_compare in schema_collection: + # compare every schema to all others + if schema["file"] != schema_to_compare["file"]: + if not schema["schema"].equals(schema_to_compare["schema"]): + # if we detect that the schema are inequal, raise an exception + raise TypeError("Inequal schema detected.") + + +for idx, data_file in enumerate(pathlib.Path(SOURCE_DATA_DIR).rglob("*.csv")): + with duckdb.connect() as ddb: + # Read the csv file with SQL-based filters + # as a pyarrow table then output to a new and + # smaller csv for testing purposes. + csv.write_csv( + # we use duckdb to filter the original dataset in SQL + data=ddb.execute( + f""" + SELECT * + FROM read_csv_auto('{data_file}') as data_file + /* select only the first three objects to limit the dataset */ + WHERE data_file."OBJECT ID" in (1,2,3) + /* select rows C and D to limit the dataset */ + AND data_file."ROW" in ('C', 'D') + """ + ).arrow(), + # output the filtered data as a CSV to a new location + output_file=f"{TARGET_DATA_DIR}/test-in-carta-{idx}.csv", + ) diff --git a/tests/data/in-carta/colas-lab/test-in-carta-0.csv b/tests/data/in-carta/colas-lab/test-in-carta-0.csv new file mode 100644 index 00000000..69339cb6 --- /dev/null +++ b/tests/data/in-carta/colas-lab/test-in-carta-0.csv @@ -0,0 +1,145 @@ +"OBJECT ID","Row","Column","FOV","WELL LABEL","Z","T","Class Name","Class Color","Ancestry Path","Primary Target Max left border wv1","Primary Target Max top border wv1","Primary Target Max width wv1","Primary Target Max height wv1","Primary Target Area wv1","Primary Target Form Factor wv1","Primary Target Elongation wv1","Primary Target Compactness wv1","Primary Target Chord Ratio wv1","Primary Target Gyration Radius wv1","Primary Target Displacement wv1","Primary Target Diameter wv1","Primary Target Perimeter wv1","Primary Target Intensity wv1","Primary Target Total Intensity wv1","Primary Target Intensity CV wv1","Primary Target Light Flux wv1","Primary Target Global Bckg Intensity wv1","Primary Target Intensity-Bckg wv1","Primary Target Total Intensity-Bckg wv1","Primary Target Intensity/Global Bckg wv1","Primary Target Intensity SD wv1","Primary Target Max Intensity wv1","Primary Target cg X wv1","Primary Target cg Y wv1","Primary Target Major Axis wv1","Primary Target Minor Axis wv1","Primary Target Major Axis Angle wv1","Primary Target Spacing (SOI) wv1","Primary Target Neighbor Count (SOI) wv1","Primary Target Spacing (MIN) wv1","Primary Target Neighbor Count (MIN) wv1","Primary Target Spacing (Gabriel) wv1","Primary Target Neighbor Count (Gabriel) wv1","Primary Target Spacing (Lune) wv1","Primary Target Neighbor Count (Lune) wv1","Primary Target Skewness wv1","Primary Target Kurtosis wv1","Primary Target Energy wv1","Primary Target Entropy wv1","Primary Target Grey Level Non uniformity wv1","Primary Target High Grey Level Run Emphasis wv1","Primary Target Low Grey Level Run Emphasis wv1","Primary Target Run Length Non uniformity wv1","Primary Target Pearson correlation wv1","Primary Target Intensity wv3","Primary Target Total Intensity wv3","Primary Target Intensity CV wv3","Primary Target Light Flux wv3","Primary Target Global Bckg Intensity wv3","Primary Target Intensity-Bckg wv3","Primary Target Total Intensity-Bckg wv3","Primary Target Intensity/Global Bckg wv3","Primary Target Intensity SD wv3","Primary Target Max Intensity wv3","Primary Target Skewness wv3","Primary Target Kurtosis wv3","Primary Target Energy wv3","Primary Target Entropy wv3","Primary Target Grey Level Non uniformity wv3","Primary Target High Grey Level Run Emphasis wv3","Primary Target Low Grey Level Run Emphasis wv3","Primary Target Run Length Non uniformity wv3","Primary Target Pearson correlation wv3","Primary Target Skewness wv2","Primary Target Kurtosis wv2","Primary Target Energy wv2","Primary Target Entropy wv2","Primary Target Grey Level Non uniformity wv2","Primary Target High Grey Level Run Emphasis wv2","Primary Target Low Grey Level Run Emphasis wv2","Primary Target Run Length Non uniformity wv2","Cells Max left border wv3","Cells Max top border wv3","Cells Max width wv3","Cells Max height wv3","Cells Area wv3","Cells Intensity (Cell) wv3","Cells Max Intensity wv3","F Actin Org per Cell wv2","F Actin Area wv2","F Actin Total Area wv2","F Actin Form Factor wv2","F Actin Elongation wv2","F Actin Compactness wv2","F Actin Chord Ratio wv2","F Actin Gyration Radius wv2","F Actin Intensity wv2","F Actin Total Intensity wv2","F Actin Intensity CV wv2","F Actin Organelle/Cyto Intensity wv2","F Actin Organelle/Bckg Intensity wv2","F Actin Intensity/Global Bckg wv2","F Actin Intensity Spreading wv2","F Actin Intensity-Bckg wv2","F Actin Total Intensity-Bckg wv2","F Actin Distance to Nuc wv2","F Actin Spacing wv2","F Actin Neighbor Count wv2","F Actin Intensity wv1","F Actin Total Intensity wv1","F Actin Intensity CV wv1","F Actin Organelle/Cyto Intensity wv1","F Actin Organelle/Bckg Intensity wv1","F Actin Intensity/Global Bckg wv1","F Actin Intensity Spreading wv1","F Actin Intensity-Bckg wv1","F Actin Total Intensity-Bckg wv1","F Actin Pearson correlation wv1","F Actin Pearson correlation wv3","Mitochondria Org per Cell wv3","Mitochondria Area wv3","Mitochondria Total Area wv3","Mitochondria Form Factor wv3","Mitochondria Elongation wv3","Mitochondria Compactness wv3","Mitochondria Chord Ratio wv3","Mitochondria Gyration Radius wv3","Mitochondria Intensity wv3","Mitochondria Total Intensity wv3","Mitochondria Intensity CV wv3","Mitochondria Organelle/Cyto Intensity wv3","Mitochondria Organelle/Bckg Intensity wv3","Mitochondria Intensity/Global Bckg wv3","Mitochondria Intensity Spreading wv3","Mitochondria Intensity-Bckg wv3","Mitochondria Total Intensity-Bckg wv3","Mitochondria Distance to Nuc wv3","Mitochondria Spacing wv3","Mitochondria Neighbor Count wv3","Mitochondria Pearson correlation wv3","Mitochondria Intensity wv1","Mitochondria Total Intensity wv1","Mitochondria Intensity CV wv1","Mitochondria Organelle/Cyto Intensity wv1","Mitochondria Organelle/Bckg Intensity wv1","Mitochondria Intensity/Global Bckg wv1","Mitochondria Intensity Spreading wv1","Mitochondria Intensity-Bckg wv1","Mitochondria Total Intensity-Bckg wv1","Mitochondria Pearson correlation wv1","Slice Algorithm","Slice Indicator","Acquisition Time Stamp","Plate ID" +1,"C",3,1,"C - 3",1,1,,,,1006,0,43,10,32.093550719999996,0.45110898107044073,0.2466162141504675,2.2832115000552986,0.1146590616565829,3.4150103315102402,2.9506076486910064,13.561442312674561,29.90013020694456,16141.516233766233,518038.5699460799,0.1654072230839265,805.2801392200488,4558.984230051839,11826.679225892218,3642617.201574803,1.5527995633757496,2669.9233765913923,21377,331.5648584415584,451.72820649350643,6.631163797760009,1.6353525112152099,0,35.845268995976376,2,35.845268995976376,2,35.845268995976376,2,35.845268995976376,2,-0.059891284494683394,-0.9494700214944993,3.3310844999156686,5.712095960101887,38.066314697265625,256.1830139160156,0.004390019923448563,377,-0.7496518438062875,10173.061688311689,326489.67127151997,0.07254809527998378,381.827975099428,6551.432604859633,4312.793184374681,1328340.3007874019,1.5527995633757496,738.036248652789,12257,0.5818612248191661,-0.04432358140315351,3.541912632821724,5.669888501030966,50.58083724975586,109.60478973388672,0.00939533393830061,167,-0.7496518438062875,-0.7408701164003568,0.07570044325894187,4.111148591668073,5.5629688042995165,58.78947448730469,270.52630615234375,0.003717971034348011,133,988,0,111,82,497.86683551999994,8332.856425282545,18794,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23,1.1099548173913043,25.528960799999997,3.214520255388468,0.7476279713431281,1.4551044067222278,0.5420135804334543,0.46091542631606525,10087.758553282467,257529.99266661276,0.18156402530874138,1.3650337091426217,1.7213816306378067,1.857450998115635,0.9782498854024911,4227.490049345459,107923.42775213027,16.950302633426414,2.835506821591194,3.130434782608696,0.17579000454497204,5753.018158652942,146868.5750539391,0.04573466125794241,0.9565416361804333,1.3333106553398038,1.6957034763568197,0.9979239449470111,1438.1811507789262,36715.27022153409,0.17579000454497204,"CurrentSlice","Yes",0,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",3,2,"C - 3",1,1,,,,1,0,33,5,12.191381279999998,0.3081792441068743,0.128517644336929,4.542459989011988,0.025622690825316208,2.9688076884532397,7.353611588688012,10.34975533623863,22.296140689670175,24766.74358974359,301940.81416655995,0.12394703789162743,365.071012492478,4609.587821832869,21740.48319546735,2543636.53386968,1.2760544476064986,3069.7645061701696,27896,5.545538461538461,452.344882051282,5.889179656219482,0.7568634964942932,-1.7024936995257207,12.312683011086692,2,11.972510095655787,1,50.31607819546877,2,11.972510095655787,1,-1.0305731469515027,-0.20935628786464777,8.547008547008549,4.762173934797756,13.355932235717773,593.703369140625,0.0018182254862040281,118,-0.6582080462213055,8047.324786324786,98108.00475407999,0.049794991176464604,125.34854470981904,6306.411769042607,2962.0526006096234,346560.1542713259,1.2760544476064986,400.71646672918763,9161,0.9339812725923864,-0.005854014296259535,8.98531667762437,4.7266279255382715,30.901639938354492,71.52458953857422,0.014173497445881367,61,-0.6582080462213055,0.18911127938748715,-1.2562377731705505,8.547008547008549,4.762173934797756,18.75,256.9090881347656,0.003993608057498932,88,0,0,146,116,703.7657193599999,7520.636363636364,23951,5,2.667515904,13.337579519999998,4.285276253548757,0.5063240366708093,1.784676741902172,0.17927264616807315,0.7082404384521463,9838.257393359036,131218.54032215403,0.07259445374582653,0.8424143265578949,1.5333229023143937,3.214198606982092,0.9916074434828037,3421.958922561271,45640.649243834465,20.06687259291169,8.51853956914952,1.6,15003.602785723171,200111.74524107628,0.08129367847693397,0.7167509650289634,4.957802974952338,4.33948470963708,0.9938270535568469,11977.342391446931,159748.75658419039,-0.38274012602135066,-0.38274012602135066,32,1.8430346699999998,58.97710943999999,1.991766783353083,0.7616909730469099,1.4608072788995694,0.5185995299505004,0.6005672800633327,9080.529597814755,535543.3878634799,0.18212226350399965,1.5087965070471134,1.7856526192093536,1.6866406198639963,0.9596134985662869,3995.2574120995923,235628.7336343688,30.307753738759292,3.4000200479089795,3.625,0.1619351840791087,4015.143117527485,236801.53505968122,0.06248624806540491,0.9875709226045415,1.326767228993772,1.106381635325827,1.0009763812422863,988.8827232512463,58321.44459251397,0.1619351840791087,"CurrentSlice","Yes",13.329999923706055,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",3,3,"C - 3",1,1,,,,135,0,38,64,207.67028111999997,0.7660667035546377,0.5828199358564593,1.1691217029983534,0.4944823221074306,6.216230592621404,1.0921423436222106,21.029125539593885,58.36584993116351,25088.130456598094,5210059.104696959,0.14849223993653698,9296.396019610385,4443.441233590499,21780.962456598092,43409458.176,1.2115102884382405,3725.3926873203054,39147,49.19468760662318,443.0597635725037,10.74128624267578,6.2602357589721676,93.20806686553617,62.44456770057386,4,48.8033279369432,2,51.94142889083462,3,48.8033279369432,2,-0.26415675809368466,0.9240365656802534,0.5798015079874392,7.49347850284331,216.66995239257812,628.8772583007812,0.0017731516854837537,2745,-0.21864356134719298,7986.739086803814,1658608.3513886398,0.24992429251182433,1897.2793131327835,6592.382386698118,2220.7616201371475,4425977.908933335,1.2115102884382405,1996.080115745977,30595,3.5704639118390724,23.47136978228887,0.7248148247919399,7.320963558894295,533.0488891601562,74.8198471069336,0.016536980867385864,2781,-0.21864356134719298,-0.059918806331874006,-0.5747331993921518,0.6412307602449013,7.414680075841979,241.2064971923828,73.77876281738281,0.019457796588540077,2034,76,0,149,145,1176.7287931199999,8318.570618967502,55848,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,48,2.1816841499999997,104.72083919999999,2.0643739515480606,0.6828733566068076,1.4626770380419076,0.4702816258286797,0.6496320939671777,12857.724500371718,1346471.6998813269,0.21651206180143379,1.5189111901001873,2.229929716982543,2.39538313103988,0.9606950336199387,7091.747033705052,742653.7007637037,13.114483578107885,3.3852675248755304,5.125,0.09129839251749634,5358.72494961047,561170.173765186,0.08170647700581112,0.8000726638661996,1.6203364781016476,1.6565548770660268,1.0012608525442241,2051.5569496104695,214840.76542980046,0.09129839251749634,"CurrentSlice","Yes",26.519999980926514,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",3,4,"C - 3",1,1,,,,585,0,43,15,47.30672736,0.5807739344659744,0.4030747846745337,1.5869571494161516,0.2644520041446573,3.4566397253187975,11.078378757443566,13.561442312674561,31.99357903454877,18894.40088105727,893832.2711107199,0.22154583407533326,1918.4976548466643,4281.254035363186,15756.044172327609,7153244.054236734,1.3026860351240999,4185.975802547545,26466,196.06189427312773,451.0283894273128,6.412677438354492,2.5847885776519774,2.9099985600338205,56.740421176713326,2,43.8822663458301,1,56.740421176713326,2,56.740421176713326,2,-0.24508743698240573,-0.9759449768838842,2.270566088998428,6.0967226153809095,39.45796203613281,348.7370300292969,0.003467340487986803,559,0.18798562009893643,8562.506607929516,405064.16561951995,0.13376668601010913,549.4753029347237,6572.962614981753,2802.376276240546,1272278.8294132077,1.3026860351240999,1145.378132882392,14431,2.0611783751651047,5.061843163648465,2.648993770498166,5.985239586274623,66.36393737792969,91.98360443115234,0.012020602822303772,305,0.18798562009893643,1.1941123787928087,0.8046191707358856,2.4161151972675583,6.050919938251399,55.400001525878906,167.73870849609375,0.006512284744530916,310,541,0,165,316,1771.39728,7114.4421764705885,26122,1,1.0419983999999998,1.0419983999999998,1.1978046321169935,0.5777936263528997,1.288053024134659,0.35978513420437563,0.46217926392288877,10933.9,11393.106305759999,0.04244925083726648,2.810262820347022,2.9828097595589407,3.959694831664304,0.9816359904592433,7268.262268676242,7573.517654741014,93.31366690751338,,,3585.9,3736.5020625599996,0.06372292816425085,1.1185649537955624,1.142604341318325,1.1589727290032552,1.0047475919824647,447.54329127033907,466.3393934344272,-0.5206725477697829,-0.5206725477697829,99,1.4135392436363634,139.94038511999997,2.657099125681494,0.6643976760121212,1.6239632057563784,0.39668924102541303,0.5551133146955401,10045.253370502014,1405736.6252960297,0.15947119005254848,1.201868248394899,1.7439281391323262,1.7780961961305957,0.9779276639837,4285.123038813044,599661.7683380821,41.39577107414321,2.772823882254539,3.8585858585858586,0.08425667919495625,4734.330960380528,662524.0978811906,0.05901068865035641,0.8828672419541207,1.5085381936385693,1.463901127089626,1.0015787963048781,1595.9742516508672,223341.25141762616,0.08425667919495625,"CurrentSlice","Yes",39.752999782562256,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",4,1,"C - 4",1,1,,,,292,0,42,7,21.986166239999996,0.3458732940596983,0.15842487586937076,3.3322825453935585,0.04865556735678345,3.4147249034583314,2.6838516877332697,13.238736000087016,28.263189517274384,11538.47393364929,253686.80606111998,0.1346465534091512,508.82069130187506,4333.849694455091,8141.436259997299,1717843.05085943,1.5885499596371213,1553.6157467672078,14794,100.88953364928909,452.14182938388626,6.745646209716797,1.0686781634330749,-0.3695652675205733,43.39168860941909,2,35.549580972994,1,64.69007533670104,2,35.549580972994,1,0.1970560856754603,-1.0495433813909203,4.9190269760337815,5.325577671653889,40.04237365722656,142.52117919921875,0.00757047301158309,236,-0.5014119698178446,12161.341232227489,267381.27003311994,0.06024636247233586,296.10333331530916,7655.624022681384,6173.6520398564035,1302640.5804097012,1.5885499596371213,732.676572026541,13841,-0.012670707561157731,-0.7286419182382229,5.188562700747961,5.286156978920622,40.35384750366211,152.8076934814453,0.006676026154309511,130,-0.5014119698178446,0.06709315850050758,-0.7762754442026387,5.368253183890748,5.259876517098443,48.10091781616211,204.67889404296875,0.004921991378068924,109,218,0,286,65,1171.62300096,8731.630202774813,24602,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,1.2754060416,31.885151039999997,3.3978909332682865,0.6750649187781981,1.36367510991448,0.42254939306286465,0.4482820733722997,11807.897979681728,376496.61054706265,0.10999659016499994,1.3941407863003663,1.9720292086513391,1.9342958988116123,0.975877133005109,5820.208787310642,185578.23626773502,16.232472704184534,2.9861528393840873,3.12,0.05138204238294917,4660.29499503768,148594.20980773246,0.058731151766332604,0.9945700641638899,1.3718702713201363,1.3913558860215345,1.0003327574515608,1263.25732138569,40279.15049476854,0.05138204238294917,"CurrentSlice","Yes",474.9429998397827,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",4,2,"C - 4",1,1,,,,147,0,46,42,163.90634831999998,0.8530301028417114,0.9421892588809885,1.0221538284596656,0.8969127412372934,5.163760393186121,3.0650408928394968,16.389850137203815,49.138358069097535,25760.150031786394,4222252.12388544,0.13409757506975648,9286.074392293991,4128.518947529006,22945.80144807564,36093745.67782298,1.2078698070524592,3454.373652695666,31783,54.880104259376985,446.88715193897013,7.51672611465454,7.082178607177734,-13.691005673968322,133.07500098507356,4,112.65114434332969,1,124.10197837690765,3,118.61776114984009,2,-0.9335209679805958,0.14276972901119223,0.7311073022221378,7.260037768723874,171.3483123779297,647.1292114257812,0.001706730225123465,1981,-0.37081696623414767,9138.495867768595,1497857.4868233597,0.15108592729610182,1768.3736066487768,7565.795431271758,3121.416033578068,4909987.420818301,1.2078698070524592,1380.698122273413,21191,1.7511349941059227,10.33018176635318,0.929949089227827,7.07835857597529,396.27545166015625,91.88643646240234,0.012125568464398384,1946,-0.37081696623414767,-0.6238068168400516,0.08569393347964871,0.8078957972040096,7.185208922723538,198.9532470703125,75.78451538085938,0.018674559891223907,1369,0,0,255,112,1793.0708467199997,8221.147954439795,65535,4,291.78560195999995,1167.1424078399998,0.9730368929454378,0.42161951589205887,2.835091034561558,0.31992621330412147,8.154105425165314,10759.609588442685,12557996.642473344,0.20138874992760616,2.8023394228298764,3.8188945517738904,4.4129115313185725,1.0160962120567845,7942.142532840218,9269611.359187607,22.715943507527097,27.438073414124354,2.5,4054.3525510707946,4732006.798689013,0.2607529333143133,1.2305926659217432,1.4406007040268902,1.333341402681426,0.9271703995848272,1240.00396736004,1447261.2161957496,0.2458096108524052,0.2458096108524052,77,1.2977616436363635,99.92764655999999,2.853468750563429,0.6849827279570666,1.451245014402089,0.4548569423009619,0.49633487814844224,13456.404758386656,1344666.8586643639,0.2117332202891259,1.3694252468809114,2.236367993976755,2.17332355768372,0.9518242444964884,7439.324924196128,743394.2316700694,19.271636980102894,2.9334577482963793,4.7272727272727275,0.0653916744874888,4773.635648748808,477018.17591438716,0.07460063961374944,0.8530755402316786,1.6961778211761915,1.518309269620474,1.0018229023296337,1959.2870650380537,195786.94534470234,0.0653916744874888,"CurrentSlice","Yes",488.12999987602234,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",4,3,"C - 4",1,1,,,,517,0,36,47,149.63097023999998,0.8581343001494064,0.8115117870856511,1.0652695640298908,0.7141026342208472,5.036751904468624,3.0213156310948204,16.335721295369847,46.80993600008701,25586.260445682452,3828496.9753007996,0.1272186949916791,6678.582947330779,3854.0115683377435,22571.799197207012,32413103.64718927,1.6093975938591207,3255.050663616939,41418,172.668552367688,446.1572557103064,7.822215930175781,6.347820428466797,79.01949307130955,39.43187259483979,3,21.296577888167427,1,21.296577888167427,1,21.296577888167427,1,0.2058550738728172,2.2537480518899784,0.8147050379807729,7.156647708996899,187.98013305664062,659.26513671875,0.001641278387978673,2014,-0.2551877633072526,12272.343314763231,1836322.6373063999,0.23045788654131338,1430.2595801153961,7625.426657520836,6043.719077042863,8678780.594633551,1.6093975938591207,2828.2583032297507,29621,2.1526647359137225,5.95943009783719,0.8981153156788045,7.083812298994423,289.1145324707031,170.1912384033203,0.007042950484901667,2008,-0.2551877633072526,1.7159862486574027,4.491438126792481,0.8214942466306128,7.151820778770158,186.6469268798828,129.44972229003906,0.011042914353311062,1790,501,0,109,165,852.25049136,12312.951094265803,43044,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,2.1437584729411765,145.77557615999999,1.5072688481252734,0.6803649349891544,1.544569094208308,0.46644834258707185,0.6925803407874322,16967.368090348937,2473427.859289415,0.1749335547423551,1.0507934755375847,2.7240956337669315,2.630443518485107,0.9742497373497487,10738.74385262857,1565446.5723515877,18.36718190842813,3.1633404378793046,5.235294117647059,0.02076670930559041,6102.276034327678,889562.804791477,0.0836377944164643,0.6538294426943758,2.0243338796987005,1.9448931356191788,1.0041326473016108,3087.814785852237,450127.9794829768,0.02076670930559041,"CurrentSlice","Yes",501.25999999046326,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",4,4,"C - 4",1,1,,,,835,0,37,5,16.150975199999998,0.33811449568932206,0.14175934278826957,3.61313187502708,0.03927994068124541,3.047553479294165,15.424246708791044,11.625282468826294,24.50035696553824,12575.922580645161,203113.41371711998,0.13985577698954912,466.5168075960639,4045.1854780952867,9460.269251058198,1466341.7339140207,1.3715703564623518,1758.8154238765449,16221,275.2546838709677,452.2906993548387,6.0367105751037595,0.8557601237297058,-0.2486603648760226,79.54356477183522,6,67.49619590749074,1,72.02386200168317,3,67.60762543211564,2,0.21613815145191295,-0.9921250381854674,6.451612903225806,5.043425116919247,30.45833396911621,166.875,0.006447995081543922,192,0.36661981947781586,10406.109677419356,168068.81932848,0.07845055877910567,198.07602074629838,7587.0039246542965,4126.2876487596195,639574.585557741,1.3715703564623518,816.3651189102075,12270,0.2585936943167916,-0.9342406763500226,6.701352757544225,5.016593613155636,31.96363639831543,112.83636474609375,0.009141666814684868,110,0.36661981947781586,-0.933366065660422,0.6498681027713555,6.784599375650364,5.007649778567766,31.12738800048828,1572.3248291015625,0.0006397427059710026,157,505,0,452,80,947.3849452799999,8181.6506819181695,20489,3,0.41679935999999995,1.2503980799999999,4.798395054415104,0.26463056881719244,0.8426667462533782,0.2564102564102564,0.22638718365210955,6803.291666666667,8506.82283768,0.04072811427390461,1.1521467062178203,1.5934041930708218,2.638113640360283,0.9905004411295995,2533.633223283694,3168.0501178181416,107.07973459901663,2.2936055670689965,2,3395.875,4246.19557992,0.03152182880267094,1.040289190364431,1.0899399390015532,1.1306504648249105,1.0014839826920363,280.2216704130374,350.3886386588547,0.0920413563589227,0.0920413563589227,33,0.9725318399999999,32.093550719999996,2.9340682622987178,0.7450769389218764,1.5410324807448155,0.4304045521816223,0.4482300453089015,10778.045474768427,345905.749106947,0.17632573827652848,1.4964527955221814,1.7162979182498774,1.7245934870786623,0.9764567223306726,4498.223446108691,144363.96231758245,75.74095920400474,2.8617015972173574,3.757575757575758,0.029933105075286848,3872.023664403584,124266.98786257667,0.06721321609074127,1.0811053095284493,1.2427646001671477,1.2429547974922401,0.9985110657231898,756.3703348166214,24274.609703540616,0.029933105075286848,"CurrentSlice","Yes",514.4629998207092,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",3,1,"C - 3",1,1,,,,1287,0,42,15,44.910131039999996,0.5884065741124758,0.42491704291314275,1.501984099895738,0.29957741645056357,3.2765356783229156,1.9320613462025817,13.238736000087016,30.969795310416842,19758.05336426914,887336.7656846399,0.21170010825827645,1138.3150531136446,4558.984230051839,16002.875232150689,6897239.225056947,1.1147081066491795,4182.782036188581,27523,422.20517401392107,451.02275081206494,6.026884744262695,2.560926043510437,1.8577264015339972,52.05640120406065,4,32.126766534733164,1,44.74727295132017,2,44.74727295132017,2,-0.28183458808131484,-0.7696714878442124,2.4063177954468378,6.040376408226812,35.743927001953125,379.3719482421875,0.0032229837961494923,535,-0.4970047764298114,7302.935034802784,327975.76938959997,0.09445341910360958,405.3747880827912,6551.432604859633,1978.4521190852438,852712.8633257401,1.1147081066491795,689.7871835286609,10041,0.06889584383673594,1.6500470509998184,2.761613040412142,5.944245357576743,73.90763092041016,60.45381546020508,0.01777097024023533,249,-0.4970047764298114,0.634480542086917,-0.5767881320114419,2.5462825889180185,5.998562425176792,45.65408706665039,367.7138366699219,0.002844089176505804,318,1272,0,118,51,377.41182047999996,7709.6466040861405,17279,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,1.8061305599999997,10.836783359999998,3.3744545017702143,0.7326993364179063,1.6144689600790596,0.37852467293159947,0.5621773686014275,10122.614885636625,109696.58455235527,0.15301486938745057,1.4780341905369714,1.9011451526598575,1.8638690670037743,0.9787545849350021,4798.131969919085,51996.316690703155,12.871368396958712,3.9243325337567154,2,0.08244568034593669,6829.0401903880165,74004.82909996808,0.042610104532458455,1.051109782215739,1.818566243763108,2.012861227215879,0.9973011855315295,3073.8620582695653,33310.77720399097,0.08244568034593669,"CurrentSlice","Yes",0,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",3,2,"C - 3",1,1,,,,530,0,82,36,224.23805567999997,0.5344010728630922,0.6151382824611529,1.4178378223589816,0.312291114740062,7.1134126857297675,1.2576380716504763,27.09405604187014,72.61493131050386,22751.691449814127,5101795.0541376,0.1580317111910943,8181.322270776076,4609.587821832869,19341.217864465452,41622300.844329655,1.2289464831809336,3595.4887323059156,29076,184.82879999999997,447.62055,12.117049095153808,7.45366076889038,12.25542869589822,80.87958895771115,4,61.53803017319477,1,77.09821170189555,2,77.09821170189555,2,-0.8638839622512678,0.10585614475277882,0.5523520957421816,7.548997201827975,225.78741455078125,523.072265625,0.0021676840260624886,2573,-0.18559767281023587,7750.2425650557625,1737899.3238364798,0.1502350764181196,2084.482372463011,6306.411769042607,2167.447190554706,4664346.3540737275,1.2289464831809336,1164.3582840201157,13499,0.41629373956506793,0.8827311711478818,0.7272563950194165,7.336136665963898,564.6143798828125,64.97669219970703,0.01710698753595352,2531,-0.18559767281023587,0.15133284878652725,1.8013692297621962,0.623177540387778,7.456419801521258,293.0817565917969,120.85979461669922,0.009829690679907799,2104,509,0,194,80,945.8219476799999,7941.76148507216,19922,2,0.15629975999999998,0.31259951999999996,9.42477796076938,0.5,1.9634953547275529,0,0.19482703448350874,10523.25,3289.5628988399994,0.006714872783502041,1.37503220517625,1.872159094409869,3.437988470778967,1,4902.333470298192,1532.4670896951488,22.125039602835283,1.8891385655901474,1,4748.25,1484.3006708399998,0.026189140043946204,0.633092594335184,1.3922553220756164,1.373334029619947,1,1337.7764146513264,418.18826508732553,-0.5,-0.5,22,3.1970405454545454,70.334892,2.0366697370690123,0.7147539459234875,1.6250911911078652,0.45900362737935024,0.8420026292733572,10652.706212489475,749256.9409631762,0.15736256297548057,1.361644864107342,1.908131231380037,1.9786606954935921,0.9745076835367444,5069.910837988418,356591.63123954483,16.145417872901028,4.077756580760882,4.090909090909091,0.2002261225962609,5817.0057783395605,409138.4731828889,0.10528094626777756,0.9392607855337339,1.7056299170089753,1.6028889076567396,1.0000166271946873,2406.532192990887,169263.18188853716,0.2002261225962609,"CurrentSlice","Yes",13.329999923706055,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",3,3,"C - 3",1,1,,,,305,0,50,17,58.66450991999999,0.5371120321920816,0.4306360671863959,1.5865573889858926,0.2707057520948658,3.848803139167157,1.3601113902136959,15.8172,37.047611586284916,23534.305506216697,1380628.49882976,0.20221220555379665,2197.7261923656424,4443.441233590499,20503.310804456312,11543363.982908905,1.5557662522384919,4758.923822588939,31840,106.89782877442273,450.78245968028415,7.07009010772705,3.0446357986450194,4.8954097722020675,65.39427269238455,4,42.84107941804823,1,60.13810873526377,4,54.60048448146775,2,-0.2789462800553685,-0.8359368115316537,1.8203672914385949,6.316043286171947,45.32333755493164,529.8500366210938,0.0022638910450041294,767,-0.447394770582684,10256.206039076376,601675.3009209599,0.11904327489130706,698.7582564317576,6592.382386698118,4883.6370765058755,2749487.674072808,1.5557662522384919,1220.9323548516527,15945,1.0158706080056075,1.8797789818238257,2.053828607844931,6.226469848971094,86.79691314697266,118.84547424316406,0.009137952700257301,453,-0.447394770582684,0.02301243432611683,1.4557097496196123,2.0790676690780487,6.2227522777898185,81.17433166503906,94.66586303710938,0.012072588317096233,413,272,0,120,67,505.57762367999993,8494.792662819456,29841,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,1.3099408457142856,27.508757759999998,3.105319401111579,0.6526112550671829,1.3689926182087813,0.4234060449454333,0.47217154473909395,12412.397050063226,341449.62367112783,0.15792991065819434,1.3228900137126356,2.3103281012375363,2.3124190060714906,0.9713168568467937,7039.828087492725,193656.92553088145,10.123438582090587,2.832368957032452,4.380952380952381,0.07379427326235245,6087.340127560818,167455.164971798,0.062339692903893976,0.9071292305324337,2.0083638298758255,1.8817933503759356,1.002887781070722,3056.345425800435,84076.26594922821,0.07379427326235245,"CurrentSlice","Yes",26.519999980926514,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",3,4,"C - 3",1,1,,,,796,0,51,47,161.82235151999998,0.4414067500049894,0.8774324920289952,1.1600085521202625,0.8431858839311743,5.465877569955216,3.2088729577354504,17.85641370488486,67.87419641397614,22332.220862846105,3613852.49468976,0.09738181527343505,6460.879087896593,4281.254035363186,19000.936555844422,29508454.471226387,1.1758510291086723,2174.752206711232,30330,265.51703026400514,446.5623098518995,8.217333897399902,7.210155759429931,98.4885623170253,67.4075528697231,5,54.459427462291316,1,62.64935256996635,3,62.64935256996635,3,-0.4991561378253844,0.757339293056035,0.7741077340701523,7.212798427952535,229.57974243164062,498.7984924316406,0.0021076537668704987,1856,-0.21841601982024597,7728.824855119125,1250696.6125416,0.17805013528033467,1525.3032981131093,6572.962614981753,2082.7161825086123,3234458.231435875,1.1758510291086723,1376.1183110119732,15785,0.9039312431762886,2.6606671070282335,0.9192270200500952,7.083293540232373,382.5140380859375,64.71652221679688,0.01767214573919773,1852,-0.21841601982024597,0.4017421601702922,-0.1418053504670338,0.7807417585720926,7.210221135563647,205.50401306152344,187.12255859375,0.0060838996432721615,1746,701,0,275,250,2688.7726713599995,7860.719733374671,41541,2,22.976064719999997,45.95212943999999,0.9573895416258105,0.3287385844024184,1.5924402896410892,0.2526249825644382,1.6680317339864137,9550.28947368421,438856.1380842062,0.11347102707051655,2.1624377338953646,1.528286084904828,3.458622437542448,0.9801309384122205,3301.2700210998846,151700.3873259734,22.95550562165771,9.85903340907029,1,4926.920194508009,226402.474518582,0.1166436033414046,1.1146939720184144,1.4789852022394556,1.5923941391032088,1.0085538549416109,1595.635887506326,73322.86684179997,0.7783280960036756,0.7783280960036756,143,2.1597785018181814,308.84832575999997,1.836312437237288,0.6953607295222997,1.6327207016101433,0.47453781817633073,0.703709737872963,11195.241716353681,3457631.660574343,0.18928392462647053,1.212231617339063,1.9828243424825003,1.9816540187095573,0.9664279095578481,5549.133043743169,1713840.4499795705,24.15630659202208,3.265386696402251,5.2027972027972025,0.015414355362683544,5576.234205496855,1722210.5984133473,0.0674959722984829,0.7906363732408848,1.6738992207229935,1.724225789590015,0.9999364534359723,2244.9498984951715,693349.0175653156,0.015414355362683544,"CurrentSlice","Yes",39.752999782562256,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",4,1,"C - 4",1,1,,,,1088,0,38,50,157.65435792,0.7873425114870846,0.7122183232481899,1.0805027034759993,0.6738036450623808,5.206860941497056,1.0414063349837868,16.7856,50.162141793229466,30882.368142762723,4868739.920596319,0.16055371851865655,6774.523015380403,4333.849694455091,27486.047013305917,41586389.13113185,1.355904894561757,4958.279041982652,42235,356.89412319894245,445.61249226701915,8.479662462615966,6.039370980834961,89.64597730326891,54.67199652548068,2,28.380923694240828,1,54.67199652548068,2,54.67199652548068,2,-0.5667866650640839,0.0444019169848473,0.7168540199522184,7.264350211688578,135.96446228027344,943.6757202148438,0.0012065318878740072,2279,0.04145415674376605,10380.298083278256,1636499.22933744,0.20053579031096896,1867.4490060841233,7655.624022681384,4446.621366360333,6727738.127303184,1.355904894561757,2081.6212797936414,24187,1.5461744903035157,5.6939719378103675,0.8103377251745065,7.174988444795436,325.30242919921875,114.79920959472656,0.010126681998372078,2017,0.04145415674376605,0.24544699247373356,-0.1486188355115865,0.7718958276999208,7.208907805950884,208.7540740966797,115.25919342041016,0.01048627495765686,1659,1072,0,107,60,442.43252063999995,9112.136834667923,28679,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,2.5901103085714285,18.13077216,1.7941359438331317,0.7185967511807106,1.4344780413086455,0.5160215148637519,0.7484679974624664,15026.371254270938,272439.7136027598,0.20300115728328863,1.8501751722323323,2.5323879225553685,2.4615260346228376,0.9334586310391408,9092.694537353014,164857.5729772241,9.019880303741267,3.257976523630823,2,0.03013183599174079,8218.207204890503,149002.44239554013,0.16731850739010154,0.8010635290933151,2.4197379728355917,2.453589521531251,0.9712185618206826,4821.886075433695,87424.51781516489,0.03013183599174079,"CurrentSlice","Yes",474.9429998397827,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",4,2,"C - 4",1,1,,,,778,0,34,6,17.08877376,0.41197599762785875,0.16975958593611487,3.100925875473266,0.05563043106791021,2.9040976269637766,2.25736521373669,10.6572897868079,22.830973241406316,27821.128048780487,475428.96297359996,0.1705511597868331,487.83985040792794,4128.518947529006,,,1.4710171237441936,4744.925655297505,33615,256.7440975609756,452.02431951219506,5.726421439361572,0.9721149324417113,-0.41401462461224514,9.993217588781617,1,9.993217588781617,1,9.993217588781617,1,9.993217588781617,1,-0.8295807368656354,-0.42034445574461143,6.246281975014872,5.082960399030053,14.574257850646973,749.7772216796875,0.0015545160276815295,202,-0.7274391221309388,11129.414634146342,190188.04876416,0.09474502733867793,194.71930064149902,7565.795431271758,,,1.4710171237441936,1054.4566937756774,12856,-0.23977547443513347,-1.220524176288398,6.246281975014872,5.082960399030053,24.657142639160156,134.10476684570312,0.007832138799130917,105,-0.7274391221309388,0.7753802603990353,-0.8332761785752334,6.543723973825104,5.0491483414417635,20.539682388305664,278.22222900390625,0.003861756529659033,126,731,0,105,7,54.28811663999999,9926.30518234165,13138,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",488.12999987602234,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",4,3,"C - 4",1,1,,,,453,31,35,73,199.43849375999997,0.7231972301708055,0.4514668800001985,1.344744280464383,0.33830210867069166,6.533327069720247,1.1005637234894774,23.297574263429226,58.86823944843789,27493.24712643678,5483211.795468,0.1595087484450063,9107.745728238075,3854.0115683377435,24009.6998013339,45954565.41975308,1.336948196586202,4385.413439827196,49345,151.6016539184953,431.4272595611285,11.909014109802245,5.3765254440307615,89.51655374085666,19.55366371238623,2,13.401549925863904,1,40.866354051821794,2,40.866354051821794,2,0.41856198370020486,1.843856107658679,0.597805970198144,7.46060561271525,203.72882080078125,769.4794311523438,0.0014588709454983473,2939,-0.09104401723292802,10194.800417972832,2033235.6395443198,0.1504441225633423,1693.3875991453056,7625.426657520836,3312.2674961621324,6339679.987654322,1.336948196586202,1533.7478035903182,18185,0.8689406110901307,1.8126415500035433,0.7288319362689701,7.308234012064865,536.2637939453125,112.75265502929688,0.009754789993166924,2923,-0.09104401723292802,0.9340698686600376,0.624354940600671,0.5655954202057326,7.501084262777578,129.7615203857422,375.2741394042969,0.005722100380808115,3170,425,0,63,104,535.0661783999999,11027.910808179162,35413,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,1.4546297663999999,36.36574416,2.795875876596197,0.6985618921499035,1.6631396675442922,0.36706173192387725,0.5548432871101568,16009.1748922302,582185.5583435389,0.16111986436846537,1.3936959684791987,2.32605859995195,2.4818952537202494,0.9609914778933759,9126.6419704195,331897.1269361938,11.746910024520915,2.615893860764182,4.16,-0.0569965944098255,7015.213649712531,255113.46481318574,0.09346785429494026,0.8371495221187079,2.0138132182560056,2.235860979653485,1.0075644094421499,3531.6663246096505,128431.67401924204,-0.0569965944098255,"CurrentSlice","Yes",501.25999999046326,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",4,4,"C - 4",1,1,,,,1123,0,70,18,94.92605423999998,0.4874161073620347,0.2791797022498528,2.0628878335040195,0.14441265304610962,5.5826525090577315,0.9150242957902495,22.27553900761999,49.47066041388912,21634.16904500549,2053646.3042035198,0.2046801469819114,3388.3039412987605,4045.1854780952867,18338.188706822242,16706089.911915062,1.4888184982397095,4428.084899963241,30388,373.58802678375406,450.6635249176729,10.751892155456542,3.0017100505828855,0.2594431906973403,62.56000717821088,3,35.625880076237266,1,55.927921109204824,2,55.927921109204824,2,-0.5269336570538447,-0.6217178486895993,1.1627612748683307,6.774403598102021,65.04212188720703,446.44598388671875,0.002806234173476696,1092,-0.7667015980285729,11295.671789242591,1072253.55294288,0.1366666893975125,1066.8193518239777,7587.0039246542965,5180.135414881601,4719103.362957139,1.4888184982397095,1543.7420679566617,16461,0.7657210838149855,0.2695985140439032,1.28807440708212,6.700957901643072,120.54571533203125,139.1942901611328,0.007810791954398155,700,-0.7667015980285729,-0.13093503556248856,-0.7967821717090984,1.2856645391549315,6.701532268430958,96.37275695800781,190.9659423828125,0.005533318500965834,558,958,0,343,33,797.96237472,9842.095194567772,21706,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,0.651249,2.604996,3.3661810221117294,0.6446243025545193,0.9502154285892918,0.5852933473296695,0.3043464923494723,11133.620833333334,29003.03773635,0.1533608020840909,1.0180208961154833,1.8205469073833578,1.7814890484290262,1.0004228311750523,5018.084458972344,13072.089943285118,10.31289342092801,6.128129288104716,1.5,-0.3628838230539388,4672.8875,12172.853245949998,0.05203131210788624,0.5205335434157401,1.4177534513375485,1.5000393695065826,0.995519410585073,1376.9071618167518,3586.8376489039906,-0.3628838230539388,"CurrentSlice","Yes",514.4629998207092,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",3,1,"C - 3",1,1,,,,88,1,18,3,3.9595939199999997,0.36354133171048464,0.14891624490810332,3.9134791722530413,0.03547046581159752,1.5704239092123715,13.49657024243475,5.497085918921043,11.699124413802103,9889.342105263158,39157.778872799994,0.06221473287224872,76.79536856015109,4558.984230051839,6557.203886746265,249173.74769635807,1.2026979764696708,615.2627773612292,10992,30.87836842105263,452.3617263157895,3.1065605747222897,0.46261733536720273,-1.8367494213299025,30.660095495670852,4,19.393783898462075,1,33.944585170324004,2,19.393783898462075,1,0.023080482338482124,-1.1409887769752902,26.31578947368421,3.6375861597263857,16.069766998291016,102.3720932006836,0.009966258890926838,43,0.5388363427964867,7879.394736842105,31199.203493279998,0.05455352803486448,41.84789026641479,6551.432604859633,2432.587803976813,92438.3365511189,1.2026979764696708,429.8487816740794,8820,0.25920588027073876,-0.9376959988215261,27.700831024930746,3.6011047291705993,16.586206436157227,69.27586364746094,0.014607279561460018,29,0.5388363427964867,0.3500651621636866,-1.1563809788209278,27.700831024930746,3.6011047291705993,8.636363983154297,106.69696807861328,0.009787112474441528,33,0,0,129,106,479.8402631999999,7160.867318132465,14987,2,0.36469944,0.72939888,6.708551555232841,0.6704065622249338,2.8070710834236463,0.04340662658056449,0.3621327803847084,8410.916666666668,6134.913196439999,0.019949489833421735,0.4857629062916246,1.0983941935166186,2.9382111321948012,1.0014667136591915,753.450234020771,549.5657568304881,3.17347060458402,1.3998342330433255,1,6353.75,4634.4181338,0.030164641850699798,0.41808332442353613,1.9068086565832798,1.9974140523552801,1.0035802574369947,3021.611781483107,2203.9602492085824,0.2782348713226486,0.2782348713226486,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",0,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",3,2,"C - 3",1,1,,,,872,0,63,15,71.79368975999999,0.4534349957767661,0.27119510767604227,2.1671162101418813,0.1283422603327572,4.976159521204084,2.5078874604003416,20.01620305652398,44.60571972421894,19539.833091436863,1402836.7149287995,0.15497097649574249,2040.5843261242417,4609.587821832869,16047.242477865144,11056550.067249084,1.5151757538259207,3028.1070147437936,25431,290.81890624092887,450.99845050798257,9.606476971435546,2.6052295566558836,-2.0258404179325584,42.841728327287846,3,30.93417257072506,1,44.052946987903226,2,30.93417257072506,1,-0.0973917796449493,-0.987498301739699,1.5229998251604626,6.501036620594155,67.8288803100586,366.6898498535156,0.0030241613276302814,748,-0.3230463648972529,9555.32220609579,686011.8380212799,0.18597928288706522,822.8937678666902,6306.411769042607,4058.5528034139543,2796342.8815522143,1.5151757538259207,1777.091971644545,15123,1.048106389395358,0.18706523482821646,1.7167978665363446,6.410988074619112,89.35713958740234,104.11111450195312,0.011011079885065556,504,-0.3230463648972529,-0.022528066412631113,-1.0866013911526662,1.6241118467478792,6.455252916338471,72.46583557128906,410.625244140625,0.0025165772531181574,483,759,0,225,51,642.80881296,8174.213973091263,18476,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,1.2355123885714285,25.945760159999995,1.8452313967159837,0.7499681367521716,1.3855626489930586,0.4883227883995108,0.5092993788555955,11040.981621024477,286466.66107006907,0.16518906140123737,1.463394686577976,2.008631036193306,2.050779955573645,0.9649278953022389,5544.212218342641,143848.80049325968,19.81547725322197,2.9152288996931843,2.761904761904762,0.06536692081097864,6994.771088435375,181484.65303464636,0.05762404279997989,1.1544002996513572,2.002745773081641,1.9274247639567403,1.0005710103771472,3502.180474863656,90866.73463784732,0.06536692081097864,"CurrentSlice","Yes",13.329999923706055,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",3,3,"C - 3",1,1,,,,742,0,67,21,106.38803663999998,0.5111877773492401,0.37355522211274494,1.947411515138345,0.16861587235795605,5.742292588499277,1.4302840024238856,21.654082294107962,51.14004413802105,32541.184133202743,3461992.6898721596,0.18088302803558173,6087.136493829782,4443.441233590499,28956.621817511295,29564710.87567903,1.3455990128886282,5886.147921877139,41964,251.85134221351615,450.2443486777669,10.757944409179686,4.01868631324768,6.183961789158676,54.66934653130643,3,46.61464885765416,1,54.66934653130643,3,54.43756548508694,2,-1.139573994610135,0.6253008490004199,1.0465820127949688,6.88101548453176,78.71781921386719,1003.9411010742188,0.0012163416249677539,1375,-0.7439778041455181,8870.703232125366,943736.7004819199,0.1259804955701262,1197.6794811388281,6592.382386698118,3250.556250905438,3318817.932174452,1.3455990128886282,1117.5355892386738,13004,0.9582999187896396,0.6055279036852821,1.3535538222307066,6.691359002050575,215.06492614746094,87.64188385009766,0.012329728342592716,955,-0.7439778041455181,0.34521363310997494,-0.2649274391310432,1.2077422127487312,6.773724243987952,122.30272674560547,75.95695495605469,0.015199507586658001,697,607,0,271,87,1169.0180049599999,7681.203315803547,40251,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34,1.2687862870588233,43.138733759999994,2.1894099859380463,0.6820602419513213,1.3615545560411448,0.4576558154676794,0.48863621074448765,11540.643243592169,497848.7363044654,0.1158309182281084,1.2183902413727916,2.0534415349199846,2.150012013887127,0.9915587057846365,5920.49626237224,255402.71198955117,11.090000232658497,2.9452721573863405,4.823529411764706,0.1702013865412969,5928.266516519994,255737.91091447862,0.059906949254738516,0.816742527366668,1.6538327400723274,1.832618561846934,1.0011798722668581,2343.704200828546,101104.4315317362,0.1702013865412969,"CurrentSlice","Yes",26.519999980926514,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",3,4,"C - 3",1,1,,,,1033,0,37,31,88.569864,0.6782016094384413,0.8274122698320954,1.079894661401468,0.7072541137850313,3.9016090135905905,2.0907181234831222,13.060441726067307,40.510584827691225,35342.855294117646,3130311.88677168,0.12557149815050087,3139.628314370356,4281.254035363186,31425.867342310416,26711987.240963854,1.6821892511029022,4438.055288198713,44511,339.63155152941175,448.0031068235293,6.012127835083008,4.974508338546753,-32.43901029813164,15.884679828353317,2,10.736560391654649,1,15.884679828353317,2,15.884679828353317,2,-0.37840725971286077,-0.09407315040765685,1.2262975778546714,6.715879527719471,73.20301818847656,1231.9647216796875,0.0008765910752117634,1192,-0.24560801090341103,11056.96705882353,979314.0686524799,0.1671425924826839,977.2066017124524,6572.962614981753,5977.948986534373,5081256.638554217,1.6821892511029022,1848.0901392074013,18830,0.8413938161394086,0.8215849698604485,1.3564013840830451,6.641256301204265,162.71481323242188,134.73582458496094,0.008374526165425777,1094,-0.24560801090341103,-0.6486027291774609,0.4301675115413315,1.2290657439446366,6.714248593176976,49.494964599609375,814.7298583984375,0.0034897353034466505,1192,1009,0,153,62,484.73765567999993,9880.63026655202,24405,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,1.8104722199999999,28.967555519999998,1.685784887254571,0.6496065617240434,1.4128298170553506,0.49516544285890873,0.6154697505238426,11606.662306873344,336216.6347762448,0.1887182427807459,1.19220336911977,2.285217760928762,2.0544789998256143,0.9756417887440145,6527.644234584188,189089.89678012536,9.68747526756119,3.121655827365136,3.75,0.22237187891284718,7985.079743231447,231308.24079368426,0.10393696862961095,0.7611675099582791,2.0385765392888873,2.469064231850303,1.012212957623304,4068.0917914242177,117842.67482853727,0.22237187891284718,"CurrentSlice","Yes",39.752999782562256,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",4,1,"C - 4",1,1,,,,1324,10,65,40,221.11206047999997,0.8404386511554515,0.6503090150253921,1.1273131226234847,0.5537189805167708,6.298520772112616,1.4141569370665468,21.147711774090354,57.49871503463579,26297.958058435437,5814795.692717279,0.16195617571990115,10620.749028835009,4333.849694455091,22807.18276000896,48396841.816739015,1.1127606289949152,4259.11671638656,44520,437.8298256361922,443.5075764373232,10.56069881286621,6.867717642974853,-6.166754848604807,81.00367404145207,4,53.826040234219676,1,76.16393707419195,3,76.16393707419195,3,-0.10186909985789491,1.341474831933886,0.5445398993178594,7.55574707143331,226.8438262939453,694.678466796875,0.0016354778781533241,3163,-0.04977784111574584,8518.877002827521,1883626.4470708799,0.14517220134577863,2198.843302066075,7655.624022681384,2396.1812621872605,5084696.6383613665,1.1127606289949152,1236.7041274944002,13049,-0.004612558046436357,0.09320718307710552,0.7084348608580634,7.35082310012603,679.4979858398438,79.54785919189453,0.0138551015406847,3249,-0.04977784111574584,0.6412432381085205,0.05113948970511961,0.5436515797431157,7.556474047099916,181.93492126464844,170.4825897216797,0.010746220126748085,2843,1272,0,239,125,1688.8710067199997,8260.143694471866,24879,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,57,0.939626627368421,53.55871775999999,2.9076664014758173,0.7066932522747964,1.3151486814411826,0.4355472292150166,0.40464147372156534,10906.522106559209,584139.3392484052,0.13372036377606394,1.240579605913776,1.7813268155994788,1.7866381482391755,0.9835786422227724,4783.826365918948,256215.60614509936,19.08013178042105,3.056787495640288,4.350877192982456,0.07527989431397611,5151.302879189796,275897.1770028016,0.06565252774011657,0.9268670425729376,1.4756901945283691,1.5379489043659673,1.0004602329406287,1660.5275807633175,88935.72803079811,0.07527989431397611,"CurrentSlice","Yes",474.9429998397827,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",4,2,"C - 4",1,1,,,,1009,0,40,27,35.115346079999995,0.16688891479290768,0.5802799368650529,3.2195220484095444,0.45195576787331915,4.241839656569802,3.2986841956092703,14.508055583020074,51.42089875876771,18694.05934718101,656448.36361632,0.2932008269736396,788.7542705494755,4128.518947529006,15479.267122995197,5216513.020449381,1.303043143719302,5481.113660087769,30333,332.3173317507418,449.8538884272997,7.337406394958496,4.257749719619751,38.717548973584606,39.685858992148205,2,39.685858992148205,2,61.10904966831051,3,39.685858992148205,2,0.6781628010899194,-0.6168393197796607,3.108242566193239,5.787173865399961,31.391010284423828,346.41796875,0.003827009815722704,445,-0.12385652684249264,9858.557863501484,346186.67122656,0.10840284881737179,390.95420512859687,7565.795431271758,3652.418126061444,1230864.9084827066,1.303043143719302,1068.6957576344632,13677,1.271544209035536,1.5243762444523155,3.56611399237468,5.69100763854678,59.84363555908203,111.50181579589844,0.009599734097719193,275,-0.12385652684249264,1.1360191036342224,2.5778911904465307,3.0730216872562055,5.7954011316380605,25.69565200805664,221.56832885742188,0.0062665557488799095,322,996,0,141,85,579.3511103999999,8580.477877697842,18312,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,0.5557324799999999,1.6671974399999998,5.31086351998696,0.8984466639632774,1.7369612166533699,0.5119859710600867,0.3152344600243725,12746.720238095237,21251.299349348566,0.08961994064662882,1.6510759956630559,2.0538886936750007,2.0587034853712,0.9875350941399222,6540.580500655196,10904.43906680626,15.065457532103158,1.822249058179134,2,-0.013229558035167685,6587.988095238095,10983.476887131428,0.03231918604493891,1.081593990042669,2.049273370040762,2.0953847610407927,0.9984178522217831,3373.1958710522836,5623.783520836937,-0.013229558035167685,"CurrentSlice","Yes",488.12999987602234,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",4,3,"C - 4",1,1,,,,1393,35,62,86,395.85519215999994,0.8137699384404281,0.9966644484838625,1.1483887457554707,0.5169691616901426,8.505947649427137,1.370294374237784,28.48881453763915,78.18479172439298,28609.265859436695,11325126.434343839,0.17989075090316847,20595.328736280313,3854.0115683377435,25596.287804869673,97240297.37069988,1.2807539192603308,5146.542318242448,53220,459.4514618583837,427.7280985522505,12.05006548461914,12.009871870422362,67.59910984592571,51.50741426600407,2,33.55140749863774,1,63.727612871589805,3,60.85970879069949,2,0.39655359616609454,0.7237468927386885,0.31463926203269993,8.113341781782905,348.56964111328125,843.59423828125,0.001359574613161385,6139,0.09441831103111116,9766.295077652014,3866038.6146551995,0.22320372571068275,3897.548529585431,7625.426657520836,3678.0439070208095,13972888.802772054,1.2807539192603308,2179.8734477218313,20695,1.2984940726304939,2.9151504521720275,0.4231451163254125,7.875995525381317,907.2971801757812,106.5058822631836,0.011232895776629448,6118,0.09441831103111116,1.3323150455383437,3.8213239175007505,0.3341786304302382,8.067341677623553,391.26416015625,366.9249572753906,0.00348870106972754,5716,1192,0,472,208,2963.6518492799996,9552.340341748119,59068,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,112,2.0104986985714284,225.17585423999998,2.3490023331965437,0.6603978047563404,1.609916312823002,0.4091909628716753,0.6514921036123065,14798.214602559598,3332200.6143581993,0.1421533769769238,1.266253484594898,2.430618282298196,2.2941606193240807,0.978583652095291,8709.963431928394,1961273.4561836382,24.22337498309975,3.6308438845518256,4.517857142857143,0.10131284520267254,6998.816486934215,1575964.4811144075,0.0748823757735114,0.8397481725254384,2.3228899647395456,2.230634941180008,1.000742468561067,3985.838432367193,897514.573870905,0.10131284520267254,"CurrentSlice","Yes",501.25999999046326,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",4,4,"C - 4",1,1,,,,1430,0,63,29,124.62300863999998,0.5533089424975525,0.5021581949760318,1.4145979720176824,0.39829407628223856,5.296947714625872,6.0005352501697296,20.01620305652398,53.20104993116351,25908.29933110368,3228770.21138784,0.1395636335405066,6355.176040587682,4045.1854780952867,22836.09962264887,27311975.14868805,1.3209062279801833,3615.8563935039065,33685,471.7333344481605,449.4458297658863,9.462772579193114,4.751808797836303,-1.6719890048820865,27.583042607050974,2,26.36582691543053,1,27.583042607050974,2,26.36582691543053,1,-1.1048047181711826,0.9171882406007996,0.9381886108656502,7.002844588235997,120.88372039794922,643.5731811523438,0.0017453511245548725,1462,-0.49672544550430786,10021.720735785953,1248936.9898435199,0.1389430759889925,1390.378438935106,7587.0039246542965,3963.4622323845924,4740300.829931973,1.3209062279801833,1392.4487057327694,16677,0.6846466003116206,1.4528540083570967,1.1101665529468352,6.88238265705994,186.86740112304688,107.57734680175781,0.01034455094486475,1086,-0.49672544550430786,-1.2167358568052886,0.7295404367258653,0.9214102750528518,7.016032285657473,86.9779281616211,290.4830322265625,0.007375225890427828,1178,1392,0,272,103,1281.4496323199999,8756.914213693284,24114,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43,2.0621875311627904,88.67406383999999,2.2872392008139086,0.6464216009067104,1.91600118285292,0.3670924059447002,0.7375800261174831,12191.64950436362,1081083.106464844,0.1513429162590637,1.3380575045014718,2.012401665844849,1.9507840620261487,0.9724016285001166,6133.39100096226,543872.7051750089,30.497986152813343,3.3810377457938117,3.441860465116279,0.11172145385248208,5731.013315781763,508192.240631522,0.06974059684440893,1.0139704095251325,1.865442959326438,1.8397073759723737,0.9985425923321054,2658.813607326952,235767.8075547708,0.11172145385248208,"CurrentSlice","Yes",514.4629998207092,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",5,1,"C - 5",1,1,,,,404,0,70,86,401.58618335999995,0.7520727160109028,0.7541370396091618,1.1790811421531713,0.47839730390441004,8.681030802585392,0.7242260173053375,30.174462744512947,81.91518124166737,25898.052672548,10400300.1292248,0.17888979057632326,21209.706673227767,2948.004369154207,23360.222822083357,90030298.75630926,1.368771659798754,4632.897218926701,40664,141.46965459263103,439.20776076803315,13.862242007446287,10.454030149841309,59.54764482719214,63.18270480146909,2,53.62754530901393,1,63.18270480146909,2,63.18270480146909,2,-0.6266464092523234,0.2630193279520867,0.3180434591171426,8.10698547724533,361.8844909667969,680.4136962890625,0.0017387692350894213,5671,0.11075197387853443,9494.266995329528,3812766.4464551997,0.12674056736754705,4131.14298829625,6936.341008642332,3188.975708004654,12290312.378649935,1.368771659798754,1203.3087857270405,15394,0.3095154358423023,0.7307230159378539,0.5033219518119725,7.726310978903366,1221.155029296875,96.77894592285156,0.011098436079919338,5510,0.11075197387853443,1.0311421384163302,1.6953780645957082,0.40758575391515267,7.909222958112256,617.9964599609375,75.85224151611328,0.017399944365024567,4548,345,0,223,141,1315.52298,9051.767445544554,27414,5,2.91759552,14.587977599999999,0.7171068663468774,0.23779335426554912,6.35987793464233,0.1438373399117703,1.4084622897955397,10368.114285714286,151249.81895423998,0.11786765760272348,1.4507746123704348,5.139151326325285,5.322342746252202,1.0056333473462493,8350.63831986684,121818.9247559191,12.305534403475638,7.925261024279144,2,12837.272261904762,187269.84020176798,0.19168154632336684,0.8986697264676877,5.05836601281777,5.3631745290621105,1.0278015595451917,10299.442411440117,150248.0351905784,0.2215780097482102,0.2215780097482102,18,1.2677647199999997,22.819764959999997,2.8221973563878424,0.7110679881823594,1.4588179364216767,0.4606210259150649,0.4769060759334923,13183.469743042615,300843.680893504,0.13641019413580407,1.4259228741128924,2.0908581605967207,2.145180138636125,0.9593395950623687,6878.178455717741,156958.4157124146,13.796197873953448,3.041930889364232,2.888888888888889,0.10006880721247682,5486.452184963709,125199.54932515029,0.07723649409249765,0.8559682712249665,2.1618676224330837,2.261861913085764,0.9973476514255721,2948.622334499065,67286.86862907515,0.10006880721247682,"CurrentSlice","Yes",527.6499998569489,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",5,2,"C - 5",1,1,,,,0,0,15,6,5.730991199999999,0.6014313995099355,0.4012800080924927,1.8533647970751337,0.21378289115657212,1.3001857906449525,3.587628987310153,4.530713904011154,10.942756965538246,11299.309090909092,64756.24096607999,0.16589461908287842,164.54372361896958,3791.695341343275,8934.330322331596,491388.1677282378,1.488008537805214,1874.4945775360688,15116,1.7724654545454546,452.2721454545454,2.413317547416687,0.9684160849571227,-5.801167338369344,62.69272347208936,3,45.32896177489623,1,47.3492609263242,2,45.32896177489623,1,0.15346256946681502,-0.8609188762270441,18.84297520661157,3.9821278332121097,11.692307472229004,135.2820587158203,0.008193404413759708,78,-0.8363346041444245,10309.781818181818,59085.268873919995,0.0376265815564018,65.9124737841795,6928.57705869656,4467.015363829377,245685.84501061574,1.488008537805214,387.9218464105266,10980,-0.6824770517758221,-0.17133795271352215,18.18181818181818,4.007333185232471,19.210525512695312,111.60526275634766,0.009040887467563152,38,-0.8363346041444245,-0.32098350473275084,0.21652065296483514,18.18181818181818,4.007333185232471,13.606060981750488,105.33333587646484,0.00965321995317936,33,0,0,46,41,93.88405583999999,8707.08768035516,12390,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",540.856999874115,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",5,3,"C - 5",1,1,,,,23,0,23,4,6.5645899199999995,0.3663696463880705,0.17780500241056324,3.0867760234914288,0.05515539430312044,1.7958349354728655,3.7439139918009237,7.1015999999999995,15.005448827604209,11079.190476190477,72730.34212176,0.1033805882868741,155.9511857388873,3860.078168202974,8398.241065967672,529089.1871559633,2.139056178827588,1145.3732291709043,13328,11.000819047619048,452.4682476190476,3.5362099433898924,0.6287558175086975,1.6333867781194438,42.80732137342799,2,36.03107510967721,1,36.03107510967721,1,36.03107510967721,1,0.309795411751208,-1.0818054271341668,16.376921138825903,4.121130053992805,19.026315689086914,130.2236785888672,0.007981386967003345,76,-0.1886214847883429,15345.825396825398,100739.05071407999,0.08664219074016544,98.07088716549544,7174.110501967467,9694.520547546235,610754.7944954128,2.139056178827588,1329.595931097021,18261,0.12832572321652197,-0.8728536618839788,16.376921138825903,4.121130053992805,10.333333015441895,241.1666717529297,0.004291623830795288,54,-0.1886214847883429,-0.46975171491882933,-0.676102573562074,16.376921138825903,4.121130053992805,21.35087776184082,149.17544555664062,0.00679755350574851,57,0,0,147,66,408.56757264,9946.216781433308,20647,1,259.77020111999997,259.77020111999997,0.3637260772601463,0.8221685067298918,1.6687047918305669,0.3128458365710537,8.306048985764924,16655.95828319294,4326721.633071359,0.24145426376993528,3.055480764325193,6.4214654164311415,6.603292645780825,1.0120178601396395,14062.164312026493,3652931.251517608,6.536164330579346,,,4725.734456478139,1227604.99019904,0.25406353299664036,1.4394240917070298,1.7627092993468307,1.6113925996765603,0.9799511169298526,2044.7850462553342,531174.2227129166,0.681594781559839,0.681594781559839,3,0.9030652799999999,2.7091958399999996,1.8318161322060968,0.7550542380785745,1.002594645160378,0.5940129965107795,0.3690115717892516,12611.766666666668,34167.745788383996,0.1998989486168734,1.5169495180334653,2.2316556977589577,2.2040040783529484,0.9208106947903767,6960.461817387507,18857.25420014507,8.128583951370915,3.121847904104824,2,-0.08851910060147444,3951.6222222222223,10705.718485696,0.06883654837882068,0.9990265149115194,1.4739637410367308,1.3241918003335829,1.0041552710273984,1270.6728119994177,3442.5014962699242,-0.08851910060147444,"CurrentSlice","Yes",554.0429999828339,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",5,4,"C - 5",1,1,,,,1382,15,55,76,297.90734255999996,0.7926753680125799,0.8802163710221113,1.213629344738669,0.43766391783486613,7.585665637944871,1.4561451583335414,26.024968011507713,68.72232662092071,20610.305701294157,6139961.400821758,0.14534776010444445,9647.748584113506,3983.5534327491,17533.84103417305,50129251.516700745,1.1560945682093284,2995.661768750967,38369,454.6678081846799,435.87687387198315,11.386366598510742,10.022466286468505,64.24167304760905,18.989081837713787,1,18.989081837713787,1,46.639143533636144,3,18.989081837713787,1,0.5868476849275955,2.8217011859699905,0.4628156441230304,7.753295206193385,391.44439697265625,436.13201904296875,0.0025220296811312437,3992,-0.1596129869095245,8594.734522560335,2560434.521624639,0.18082476331171263,2388.1628374191364,7434.283283479737,2870.303484159971,8206197.661213357,1.1560945682093284,1554.140835768978,20003,1.38691767198033,4.610614855729464,0.5653373226255679,7.5845940333596635,843.6575317382812,82.8874740600586,0.013687522150576115,4319,-0.1596129869095245,0.984079215750916,2.085501400235615,0.39234728276567765,7.8785130875884235,213.2967071533203,385.12554931640625,0.004409242421388626,4651,1332,0,200,192,1507.5632851199998,9954.379665468621,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,116,1.7606179862068965,204.23168639999997,2.3840313754325604,0.7285484105887288,1.4649838198091045,0.4874753594467621,0.5835728496998385,13888.274850777874,2836425.7939610733,0.17307598407221847,1.0952688429455468,2.4261406518155586,2.305180160899665,0.9693972469887645,8163.84381237751,1667315.589308064,22.528679958442588,2.939870505269411,4.775862068965517,-0.0017353550587314876,6683.413666223371,1364964.8439616058,0.07618980380040735,0.7328260274761952,2.172433097526054,2.204589092411142,0.999620480510567,3606.9489991022624,736653.2768454471,-0.0017353550587314876,"CurrentSlice","Yes",567.3829998970032,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",6,1,"C - 6",1,1,,,,510,0,16,5,5.418391679999999,0.5494721181674846,0.2641931358263215,2.1846006857249516,0.11885442893622222,1.3725599352529478,1.4738922737819127,4.852748070938774,11.131848827604209,26598.403846153848,144120.57010127997,0.238767164213835,123.38579689656851,3833.702842956297,23115.964055577933,1202030.1308900525,1.2863692087137601,6350.825458960517,36924,166.7137846153846,452.1683076923076,2.6532843280792235,0.7009795068740844,-2.3234686050728923,20.391045363869843,2,18.775045368465236,1,45.99170262776177,3,18.775045368465236,1,-0.3297630061107206,-0.9337334493355018,19.230769230769234,3.9512437185814275,5.745098114013672,734.61767578125,0.0017586674075573683,102,0.9586304059066036,8452.692307692309,45799.9976736,0.06012138553030375,64.30841259540676,6570.96908914988,3176.0666532420464,165155.46596858642,1.2863692087137601,508.18757299980217,9348,-0.24783482261715153,-0.7773258588888217,21.449704142011832,3.8712651977475874,14.54285717010498,76.85713958740234,0.013295634649693966,35,0.9586304059066036,-0.4716789208697318,-0.4273128682640812,19.230769230769234,3.9512437185814275,8.94444465637207,110.91666412353516,0.009465640410780907,36,510,0,29,16,27.196158239999995,7157.199233716475,9507,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1002.8529999256134,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",6,2,"C - 6",1,1,,,,452,0,64,15,62.936703359999996,0.3974959904922594,0.2656035466485436,2.534297830167362,0.10398042976898692,5.038379601659879,6.901099070580687,20.33896174341257,44.60571972421894,17968.89238410596,1130902.8496862396,0.2452342079012324,2174.6993998068983,3595.229756730619,14708.307827281598,8883817.927678086,1.563525348721861,4406.587090678712,25332,157.14855298013245,451.2503503311258,9.73886432647705,2.586676905441284,3.577959399698521,33.780338435843106,2,27.07021376782197,1,46.56399738387824,2,27.07021376782197,1,-0.16734976517245387,-1.0517935133614742,1.7049690803034954,6.382917493878393,51.57433319091797,317.70648193359375,0.004072115756571293,787,0.02956526030384886,10417.562913907284,655647.06684672,0.16892556757509117,653.3244441448828,6662.867936502184,4750.562913907284,2869340,1.563525348721861,1759.7927279810085,15211,0.44602206745924844,-0.4445418252494533,1.8146133941493794,6.341300360483804,49.54957580566406,122.34844207763672,0.009384318254888058,353,0.02956526030384886,-0.40205941516311033,-1.1717710217568762,1.8475066883031446,6.326100339980369,65.29177856445312,98.58090209960938,0.011786963790655136,377,441,0,296,98,899.5572187199999,9686.088497625391,35289,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,55,2.1029422254545453,115.66182239999999,2.2125048772060976,0.6916270715649432,1.484140586747801,0.4568163179176993,0.6459665948043837,13179.149761755874,1524324.47912721,0.23171768034631188,1.3953927597927303,2.325595511162145,2.378498071363054,0.9618982548320982,7512.149761755874,868868.9315864102,44.77720758952249,2.965849905043425,4.254545454545455,0.04158553442124179,4745.50626198763,548873.902472101,0.06003696351163671,0.7684307847166917,1.455415794095984,1.6098727212556703,0.9977460495220111,1484.9217051632686,171748.7505404991,0.04158553442124179,"CurrentSlice","Yes",1016.0329999923706,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",6,3,"C - 6",1,1,,,,550,0,40,57,190.26890783999997,0.7909503874951311,0.6471901206037771,1.1309186039375148,0.5757950694186738,5.852071664654314,5.553028398607393,19.370689813220384,54.98120110355929,19310.376232201532,3674164.1956804795,0.12452619021647712,8126.165433344782,4620.1862347754195,16194.76550444738,29571641.811120916,1.2496315275892018,2404.647583842867,27120,183.7317141292442,444.4736792990142,9.825750801086425,6.359128845977783,93.77514044546383,86.155740976198,5,52.035677499087484,1,52.035677499087484,1,52.035677499087484,1,-0.30575626126354927,-0.03488986271914429,0.6562144225612997,7.380030629673526,267.527587890625,379.9422607421875,0.002834008540958166,2373,-0.013951018844717363,8381.048192771084,1594652.8861929597,0.1504989448029203,1892.5403469282378,6706.815575419951,2814.599705248016,5139459.061782877,1.2496315275892018,1261.3389093544704,17487,1.109559152576546,5.537436489887883,0.8193682826496667,7.206001340861582,512.3165283203125,77.67464447021484,0.014315996319055557,2382,-0.013951018844717363,0.6640440430620155,1.8085455032398325,0.6184251093790676,7.4236062752345084,152.8428497314453,342.9206237792969,0.004036176949739456,2469,437,0,191,271,2726.2846137599995,8106.941904907507,51438,1,0.41679935999999995,0.41679935999999995,1.3962634015954636,0,1.9634954661505089,0,0.360901371568466,8204.75,3419.7345489599998,0.10912884871220294,1.991370387203161,1.2885060869355716,2.632240405625794,0.977159572199031,1837.1044892882937,765.7039753884876,43.73394389516607,,,3280,1367.1019007999998,0.10055184339628309,1.0932077828596716,1.052763097386157,0.9299395092456292,0.9524390243902439,164.38927224584768,68.51734346293507,0.7965952887904032,0.7965952887904032,202,1.7213607231683163,347.71486608,2.1884699686863764,0.7296355924719803,1.4155622931720997,0.5001496046943641,0.569455811251423,11911.694626036151,4141873.3016780154,0.19853541733790978,1.2766561077581189,2.139909253222347,2.2025262907516434,0.9544834206442326,6345.246138513083,2206336.4112977134,33.876890963273055,3.1870414021161335,4.930693069306931,0.07300697896057881,4654.996225697815,1618611.3892214212,0.07194472194944905,0.8245668462634306,1.4940878795385677,1.2391747997999643,0.9996602696793431,1539.3854979436628,535267.2222629748,0.07300697896057881,"CurrentSlice","Yes",1029.2199997901917,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",6,4,"C - 6",1,1,,,,159,0,19,53,84.29767055999999,0.5892002549204877,0.3528583368378717,1.7186515723651294,0.19456966029477174,4.801885087721634,6.73259141136737,16.983084440701575,42.40150344835087,43596.74660074166,3675104.1824371195,0.20237326931210267,6790.270254138096,3507.7416891409675,40987.00855057035,33158489.91741141,1.9421253169151391,8822.816140963389,65535,54.24276934487021,444.51315648949316,9.056522282409667,3.1956693901062008,86.28990000540912,61.5247958455342,4,50.17234360707296,1,51.61692174587768,2,50.17234360707296,1,0.05673961529061335,-0.6963253561694698,1.2452615125572781,6.690658146868924,45.52646255493164,1918.61328125,0.0006210544961504638,1417,0.08264325468123708,13167.080346106304,1109954.2012531199,0.15292520459297823,1262.2561871801906,6779.727462191173,7728.443477141117,6252310.773007164,1.9421253169151391,2013.5784558204894,23278,0.6219512166278516,1.5837938843670285,1.3797191973487388,6.617393796492454,163.027587890625,188.167236328125,0.00587838888168335,1160,0.08264325468123708,1.619293389127694,2.3335053789680718,1.2788759337551434,6.671808656173845,55.690731048583984,727.2477416992188,0.0023218467831611633,1219,113,0,94,314,776.9140070399999,8952.003487124464,40371,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45,1.45879776,65.64589919999999,2.305756869736934,0.6283678799445335,1.2600234227072267,0.4309339402149383,0.5028876215040416,12814.875199015523,841244.0055751528,0.19082176126412062,1.8675716742231383,2.3562660107244517,2.240995361805864,0.95950861024784,7376.238330050336,484219.79788966064,49.28905714332669,3.1919094343563703,3.511111111111111,0.1688410859153899,4420.633407899782,290196.45509514154,0.0880614386010188,1.1957783049540727,1.6938992814277272,1.5188128635114075,0.9935208323812731,1810.8953577284706,118877.8541151911,0.1688410859153899,"CurrentSlice","Yes",1042.4299998283386,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",7,1,"C - 7",1,1,,,,1428,20,52,66,225.48845375999997,0.7688585813159425,0.7008850891369334,1.2642498265197804,0.39168379211757853,6.735792249911469,3.6715142838877077,23.306517670385677,60.707710345052625,23897.030961182994,5388504.560891999,0.18346913176154722,11095.255335897176,3806.4537198906924,20799.053989302363,45009152.832850315,1.4899482344384376,4384.367522127056,50205,469.3403107208872,436.03865767097966,11.029170341491698,7.730181037902831,58.979061045391504,37.04430412783831,2,37.04430412783831,2,54.96818864275558,3,37.04430412783831,2,0.5545844293056632,1.9528928975115072,0.5428264902743942,7.56650925947792,234.3307647705078,588.5474243164062,0.0019662678241729736,3383,0.10449271339838777,9690.786044362292,2185160.3608622397,0.19879848451154597,2563.40820225928,6504.109216931792,4839.964394797006,10473682.950340722,1.4899482344384376,1926.513579344863,19913,0.8437349508575243,1.5986629865719042,0.6222645132413789,7.456003570480216,524.5533447265625,103.81428527832031,0.01122330967336893,3430,0.10449271339838777,0.49737175774727443,0.3286358167422847,0.5381285426795727,7.568076801253244,275.55865478515625,209.9530792236328,0.006040053907781839,3240,1378,0,286,221,1921.2366499199998,8358.066655819503,42015,1,2967.50724336,2967.50724336,0.381497764487851,0.5873104761961889,1.9662531384179411,0.2333074252585532,30.473733951425313,13488.685347097862,40027771.47091679,0.39562305157556665,3.0904413278665834,2.7910923872792806,5.346518795107181,1.0697048389896116,8655.923304331354,25686515.103571918,30.181511133966062,,,5821.852347343657,17276389.010514718,0.9333259791318826,1.7807319997225677,1.879243261065784,1.9242036909085993,1.0456540279875368,2723.8753754630275,8083119.906696473,0.2838878414018102,0.2838878414018102,103,2.2306858951456308,229.76064719999997,1.8881183930362546,0.710767469188077,1.4741697936295086,0.49625795044902504,0.6720710830410774,12752.784695172457,2930088.0651650783,0.19434546581757273,1.2923853344954896,2.628994759334291,2.5371878808598374,0.9690551822843717,7901.963045607171,1815560.1435091866,26.803288921934957,3.164184176565109,4.466019417475728,0.08334743434108262,5370.6708528689005,1233968.8110533343,0.09091734473113858,0.7854783625295864,1.7336058019852323,1.744046726142216,1.0005918015885333,2272.693880988271,522175.61698334484,0.08334743434108262,"CurrentSlice","Yes",1055.6269998550415,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",5,1,"C - 5",1,1,,,,764,0,41,68,229.65644736,0.7615026752701888,0.6383689178778946,1.1911929587398697,0.46318661430866326,6.598427546965614,0.7404781092756928,22.763694874075252,61.56140689670175,22234.601179673322,5106319.51539024,0.1579141256320046,10200.082148098058,2948.004369154207,19676.786101437192,43367636.56756757,1.4015912263297678,3511.157604064451,31977,253.14242558983662,442.2597266787659,11.123664308166504,7.101001547241211,99.58857798622927,73.46173586124934,5,57.448434061320775,1,71.7392748929183,4,57.448434061320775,1,-0.31080712646630543,0.04663182156513379,0.5410061231682373,7.572514887055784,261.2736511230469,503.0126037597656,0.0022383902687579393,3172,-0.250487782341747,9721.914700544465,2232700.3916639998,0.1323996435112363,2298.815140529912,6936.341008642332,3446.9846173512233,7597154.0966420965,1.4015912263297678,1287.1780405987347,15891,0.48475006887955363,0.7099068713036707,0.6896387034298306,7.380021938642857,616.8502807617188,100.36957550048828,0.010762660764157772,2925,-0.250487782341747,1.166006215337515,5.134099771437665,0.6591710830991993,7.414897511029951,476.55133056640625,94.83953094482422,0.011729731224477291,2474,742,0,106,121,785.7709934399999,9438.126906245856,29112,1,823.5955353599999,823.5955353599999,0.33928478747211005,0.9571202042279103,1.3610193051756063,0.5442553050503456,13.356700291959754,10516.442940283401,8661295.453485599,0.3348416065403722,5.22842716744067,4.456687989128526,5.398485419543818,0.9709572059729354,8156.743772215812,6717857.753872427,6.391199724107032,,,9499.907262145749,7824081.207437279,0.8721705048806353,3.69670373769021,3.7140711785532536,3.9688852598373163,0.6764908931777927,6942.092183909618,5717476.128725513,0.20863777510155926,0.20863777510155926,19,2.210133448421052,41.99253552,1.4448664778218003,0.6752218585306718,1.3934062501661653,0.4992391392199151,0.6849779155773983,11298.018993681706,474432.46389781364,0.14354923619013638,1.4423625090717695,1.80050117593219,1.8383844635415532,0.9757149719499406,5023.0889104884645,210932.23949380493,12.382369137726124,3.7514564041620866,3.6842105263157894,0.054723174067640344,6107.836329089311,256483.5339996293,0.12656417727446473,1.16473349912828,2.387911612946341,2.5180356810527935,1.004324528221076,3550.0212508531804,149074.393473207,0.054723174067640344,"CurrentSlice","Yes",527.6499998569489,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",5,2,"C - 5",1,1,,,,107,0,87,52,319.58090927999996,0.7207867108307823,0.9501199207111601,1.260583102633209,0.44155425101222145,8.007302197951374,2.7587500977823223,29.551630395631303,74.64349406918456,24453.790022823607,7814964.450836159,0.16982505843769533,17159.85306487616,3791.695341343275,22067.078393127493,67679729.43172202,1.2974208126861007,4152.86631964915,48078,46.65159908705575,445.9020481252037,11.609876390075682,11.030774835205078,-21.18688625940187,43.52942154996769,3,43.52942154996769,3,43.52942154996769,3,43.52942154996769,3,0.279749420391422,3.144327202365341,0.4238563400222974,7.834427984222933,292.2989196777344,600.2771606445312,0.0019411772955209017,3951,0.0966737660570353,8989.280078252365,2872802.30118048,0.1601926538026011,3134.357552968445,6928.57705869656,3033.678334439055,9304291.451724581,1.2974208126861007,1440.0166315100998,23512,1.859231767990173,11.276735283288858,0.5612083318228512,7.6045855412296115,774.173095703125,88.6598129272461,0.012612057849764824,3795,0.0966737660570353,1.5501954457096505,3.967597508959477,0.38537226801625984,7.911248987458265,205.69398498535156,307.2688293457031,0.006528651807457209,3928,0,0,237,156,1496.7265017599998,8837.347674742412,42032,1,1.3545979199999998,1.3545979199999998,0.34830721348410915,0.38586167552023953,2.6482611900623927,0.25917926565874716,0.7556064684396526,8610.23076923077,11663.400690719998,0.014129799663758312,1.0367252492950703,2.612084638025972,3.462350757556295,1.0030388048975956,5313.9245761290895,7198.231177861345,50.48318959425689,,,2966.6153846153848,4018.5710294399996,0.030286541258257683,0.9909907425571,1.2429718562158703,1.0416187462461743,1.00062258982407,579.9037549192699,785.5364202138327,0.03789423423456786,0.03789423423456786,81,1.973364871111111,159.84255455999997,2.502131181387213,0.6974046028306056,1.7728738445010572,0.41140982332355025,0.6654771973676031,12237.81902599424,1956124.2553578904,0.13818605244555227,1.0752854405974523,2.0548417359684787,2.125153480259142,0.9726647686250984,6282.217282180931,1004165.6586847802,27.441447775500176,3.0393141414807343,4.765432098765432,0.11429807126374088,4777.07221149494,763579.4256029397,0.09162170544225946,0.7674088473180598,2.0015288617432074,1.6273222608857827,1.004193610355543,2390.3605817988255,382081.3417142521,0.11429807126374088,"CurrentSlice","Yes",540.856999874115,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",5,3,"C - 5",1,1,,,,1375,0,40,47,133.89679439999998,0.7315756908071627,0.9051586505132793,1.2005342696235837,0.5122895155200227,5.05804215114107,2.045492901263269,17.753999999999998,47.9579255173614,25110.0233463035,3362151.633379199,0.1455140561068254,7556.180562974702,3860.078168202974,22343.92203763924,28711939.818366423,1.2309261193534993,3653.8613460577035,34575,450.63156326848247,446.2980046692607,7.500340084075927,6.788997708892822,64.56192540760316,87.84104686126068,4,56.56942371621979,1,77.18173347576634,3,68.80879794465203,2,-0.5660082195556851,0.2893383017892277,0.8617844327696104,7.085418107459622,141.95484924316406,618.3064575195312,0.0018007007893174887,1772,0.16477030380643282,8830.8,1182415.8119875197,0.12293509123229221,1384.3366960897822,7174.110501967467,3070.6481498194935,3945782.872518049,1.2309261193534993,1085.615203654126,12985,0.28194195271843303,1.1291232618773002,1.079804387651592,6.915307160289624,326.65057373046875,85.514892578125,0.01273495052009821,1511,0.16477030380643282,0.5157741983890773,-0.5982446656470763,0.8399824372814123,7.104165385500715,79.72895812988281,258.9350280761719,0.007619387470185757,1616,1327,0,138,149,1004.7990571199999,8281.56496940786,34341,2,0.8856986399999999,1.7713972799999997,1.928297397215792,0.3722842912540614,1.1950162916133151,0.3548387096774194,0.371953433749893,9101.345238095239,16122.098199102857,0.06678908136424246,2.510174917042947,1.664338825428781,3.608249075531768,0.9852315458538203,3632.9002922468635,6435.309696197299,30.78867189650372,21.784815153679865,1,2923.166666666667,5178.08948232,0.053305476997784644,1.0744959715934854,1.056782214559688,0.9967485853613273,1.0099378339615463,157.06535800240727,278.22514794769046,-0.28692763360139223,-0.28692763360139223,44,1.7832381709090908,78.46247951999999,2.1386339475404927,0.7236040769786755,1.3106450478754492,0.48948404052465116,0.5574229792913364,12588.54108296404,987728.1469087445,0.15858203590294975,1.567145513748793,2.185452989849487,2.1999452273960864,0.9591280062035246,6828.389232783535,535772.3503318665,15.192339441111518,4.188489016971829,4.7272727272727275,0.09869401695977169,4947.875082032213,388222.54729147075,0.08296582663025936,0.9795883353097854,1.7887541090899248,1.658036938818859,0.9982827557492957,2181.7737733679533,171187.38001015614,0.09869401695977169,"CurrentSlice","Yes",554.0429999828339,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",5,4,"C - 5",1,1,,,,944,23,12,19,13.129179839999999,0.5980135092784974,0.6065036542867429,1.379229649309767,0.47494002809513414,1.6976461469824724,2.0368500904594544,6.030401658264564,16.60994648281263,6929.777777777777,90982.29869567999,0.12100344766728312,183.24889285042448,3983.5534327491,3913.9576843198333,493158.668224299,2.068096798851204,838.5270026792348,9757,306.4499238095238,443.1301047619047,2.904637565231323,1.7616732976913452,82.99718046939765,19.478403952416596,3,5.08290793873884,1,5.08290793873884,1,5.08290793873884,1,0.37605974230068695,0.5226493533705514,8.188460569412952,4.81427723455275,37.70676803588867,53.503761291503906,0.02011973224580288,133,0.3226637931919652,15374.817460317461,201858.74344367997,0.7374965294083338,194.47872330919938,7434.283283479737,9661.693628541761,1217373.397196262,2.068096798851204,11338.87451727078,65535,2.618673680763598,7.245563498343859,8.188460569412952,4.81427723455275,12.946666717529297,370.31109619140625,0.008493298664689064,225,0.3226637931919652,0.5304944375242734,-0.07685713701797736,7.936507936507936,4.836281906951478,22.329669952392578,173.28021240234375,0.006570052355527878,182,926,0,46,43,112.64002703999999,10592.13876040703,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,1.5629975999999999,6.2519903999999995,1.485851785451846,0.6279641270302493,1.26083401227246,0.46524285266944465,0.5190638270357735,24625.49375,153958.35052026,0.3373282979296614,2.823076429142181,4.31033782482291,4.08734707908515,0.8835573177155486,18912.3699182243,118239.9551699871,3.7305791174211786,2.6147084074978255,2.5,-0.1496636149441307,6456.61875,40366.71844146,0.0809853850076696,1.1932261875411103,2.140916417397044,2.129778580374877,0.9930615188877878,3440.7986565420556,21511.840169033825,-0.1496636149441307,"CurrentSlice","Yes",567.3829998970032,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",6,1,"C - 6",1,1,,,,450,1,22,5,6.981389279999999,0.37999384826090726,0.24110876453292718,2.749607946896355,0.08336631062119959,1.7478991330089946,0.04977407643929802,6.809473459820516,15.194540689670175,40077.55223880597,279796.99356863997,0.0886824690398527,69.77152500740866,3833.702842956297,,,2.071954088345609,3554.17628561099,46206,147.93875820895522,452.14162388059697,3.398387258148193,0.8193809532165527,-3.4534338628836903,12.859074328857853,2,12.859074328857853,2,12.859074328857853,2,12.859074328857853,2,-0.19139533254733246,-0.41448971160862813,14.925373134328359,4.204692619390966,7.833333492279053,1558.1353759765625,0.0006653215386904776,96,0.660918944827664,13614.746268656716,95049.84364991999,0.024743494378752322,68.18393606140286,6570.96908914988,,,2.071954088345609,336.8763977666466,14379,-0.10073381580824557,-0.7083917139505198,14.925373134328359,4.204692619390966,23.913043975830078,189.04347229003906,0.0053215292282402515,46,0.660918944827664,-0.5278863984959491,-0.26357406707052844,16.261973713521943,4.142619737549777,14.22580623626709,325.9838562011719,0.003121808636933565,62,443,0,33,7,15.213176639999999,13486.828767123288,14524,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1002.8529999256134,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",6,2,"C - 6",1,1,,,,596,0,33,6,16.150975199999998,0.40541824661728604,0.19015009198346736,2.7797007802092755,0.06933047594699837,2.6730585801749007,18.610867267735763,10.334642519216617,22.374465103472282,11069,178775.14448879997,0.1498545205012363,436.41936901946855,3595.229756730619,7772.807042686048,1204785.0916163374,1.2897003674242995,1658.7396874281844,14358,197.6285729032258,452.1699096774193,5.253065625,0.9988709117889404,-0.46393828577858687,34.26612763747449,2,28.041792171084744,1,73.80205968109206,3,61.58473006129215,2,0.1775775817546874,-1.0785810342433089,6.451612903225806,5.043425116919247,31.35675621032715,129.69189453125,0.008379786275327206,185,-0.8125980027023839,8593.103225806452,138786.99709104,0.03970235031090865,191.19134595474313,6662.867936502184,2889.5853631797754,447885.7312928652,1.2897003674242995,341.1663945287669,9625,0.3091521027316525,0.2016329330524762,6.951092611862643,4.995330149503996,32.82857131958008,78.04285430908203,0.013048060238361359,70,-0.8125980027023839,-0.6892342123408338,-0.600837376966918,6.534859521331946,5.0344812823313765,22.83333396911621,381.9750061035156,0.002698303433135152,120,596,0,293,123,983.4380899199999,6993.195592286502,17002,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,1.2891008777142856,45.118530719999995,3.1560264471735473,0.7944025890893773,1.5481277120554169,0.4691050302519064,0.4815180950414945,8750.748057776082,394820.8950677504,0.15359381703604982,1.2799488311231153,1.5342720525374223,1.5792852918936233,0.989863499202106,3047.2301951494055,137486.54917076003,73.03222097497084,3.6410118649824232,4.4,0.05967832645503565,3456.1242233220273,155935.246942091,0.058457924208387156,0.8969022356336889,1.0485199950607267,1.1724608084421015,0.999668243904079,159.931266008075,7215.863738473823,0.05967832645503565,"CurrentSlice","Yes",1016.0329999923706,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",6,3,"C - 6",1,1,,,,1342,0,73,37,183.07911887999998,0.649550227972086,0.8187672072984908,1.5288977341264338,0.2605252066500746,6.674499307542594,0.5942071116078013,24.82203968089649,59.513839448437885,22152.285145133752,4055620.8455495997,0.1366470353999706,9041.191458567879,4620.1862347754195,19026.669006585842,33429857.444571324,1.0267836373771315,3027.044092417335,31969,445.8996054638588,447.8843569721115,10.327477709197998,8.45580008239746,18.630601276684306,74.0840930008962,3,41.756479477761864,1,75.60576990897057,4,58.84408245188952,2,-0.6159740507362484,1.311329913390039,0.6734586979345,7.349839790703192,231.8000030517578,492.8799133300781,0.0022599021904170513,2390,-0.0040240363764158195,6886.448491747296,1260764.9220816,0.11564899113217891,1698.057402086403,6706.815575419951,1426.760605173883,2506818.3832905125,1.0267836373771315,796.4108205542899,10985,0.308395484604237,1.601464448662182,1.004519202643042,7.039834607671397,491.93524169921875,53.84247970581055,0.020206214860081673,1822,-0.0040240363764158195,0.10625105872654556,0.23746224596528753,0.665684282951129,7.3582211167296885,176.0478515625,219.36056518554688,0.005983061157166958,2069,1303,0,175,68,757.5328367999999,7067.718431911967,45165,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45,2.0006369279999996,90.02866175999999,1.756924034290005,0.7468100939655467,1.3982336485625493,0.5442689632376277,0.6439236042139114,9960.06245353367,896691.0937376583,0.2344788162371362,1.3746573739412717,1.8242915456811513,1.841660662076282,0.9569632729704215,4500.374566960257,405162.6996821714,15.25491468213701,2.835991800922135,4.266666666666667,0.08849541545621183,4264.818188124729,383955.8741265772,0.08570209863401643,0.7937000868475078,1.364472794828243,1.135308165295123,0.9997216208182276,1139.202049576818,102560.83599765008,0.08849541545621183,"CurrentSlice","Yes",1029.2199997901917,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",6,4,"C - 6",1,1,,,,872,0,44,6,20.839968,0.3093030293760482,0.14208755387687608,3.714065636885714,0.038549728633848646,3.509808051648887,12.378648256999487,13.8841529810068,29.09788137934035,14090.57,293647.02790175995,0.22007872888953384,728.5532683367908,3507.7416891409675,11212.976205386884,2242595.2410773765,1.491718517654305,3101.0347349289987,20224,288.11191199999996,452.195994,6.950079396057128,0.9875197806358337,0.6638184310736598,23.239683467143692,1,23.239683467143692,1,67.7538126711703,2,67.7538126711703,2,0.1081909486372019,-1.0419182646795488,5.05,5.2913858947424375,25.375478744506836,211.31800842285156,0.005726488307118416,261,-0.47824809773429466,10113.445,210763.87016976,0.07640282307717425,266.7081159676818,6779.727462191173,4288.96065622918,857792.131245836,1.491718517654305,772.6957490357325,12419,1.1392796781873424,0.6241593752132504,5.35,5.249797063908841,37.41441345214844,108.9009017944336,0.009454162791371346,111,-0.47824809773429466,1.3830736309785856,1.1613715543766592,5.5,5.233317879578818,36.95041275024414,221.74380493164062,0.004602526314556599,121,603,0,319,35,450.56010815999997,7700.9049491211845,17703,3,13.059713279999999,39.17913984,4.691050301441153,0.7018939283745481,3.9895119520910334,0.05883666154017112,2.4162469946269463,16304.364864864867,638790.9910429233,0.1719234783397655,3.324347622032697,6.214638131024712,7.319824507388774,1.018517437933981,13680.822750084244,536002.8676518039,41.1517226370844,32.07956269392396,2,3611.346846846847,141489.46312335567,0.05121135690785358,1.1951529463116988,1.2549884051068378,1.2569383471590077,1.000660276375221,733.7530522337315,28747.813441492188,0.306925484565635,0.306925484565635,8,2.3314714199999997,18.651771359999998,1.368598973448713,0.5691618584862945,2.0176916915127405,0.3584880923388252,0.8506561707758581,10633.154004014397,198327.15731854504,0.1674444221265052,1.5430380969467972,1.8255957740510305,1.8594678788751933,0.9752326561595018,4808.669660243578,89690.20704863209,72.96807458526753,3.60786518783708,2.25,0.2535698028290697,3644.515209717608,67976.66440969527,0.06952040653361272,1.0622398712127255,1.266514827958059,1.25215915255273,0.9872918835802419,766.9214151044926,14304.442885616643,0.2535698028290697,"CurrentSlice","Yes",1042.4299998283386,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",7,1,"C - 7",1,1,,,,779,27,5,6,1.7713972799999997,1.0181339372994447,0.5879501047969194,1.3812009959493208,0.32874010320499913,0.6240170878593586,0.6871026500194831,1.882231271656063,4.67584882760421,6993,12387.381179039998,0.08589050064747455,27.150385621494436,3806.4537198906924,3876.664640324215,65903.29888551166,1.597795324079754,600.6322710277896,8052,252.06882352941173,443.4892235294118,1.081532045173645,0.6358868793010711,124.38325780589331,56.93451833808887,3,37.328375584822275,1,53.49269840494855,2,37.328375584822275,1,-0.3285986032972372,-0.3529898654485688,58.8235294117647,2.833213344056216,9.086956977844238,51.30434799194336,0.020234089344739914,23,-0.3431514361490733,10392.235294117647,18408.777333119997,0.36929862945042685,26.075596649557113,6504.109216931792,5422.924250551284,92189.71225937182,1.597795324079754,3837.8382510440006,18456,1.0063465515301784,-0.23672574224761744,58.8235294117647,2.833213344056216,3.799999952316284,137.36666870117188,0.010768704116344452,30,-0.3431514361490733,-0.9351156517615103,0.07285253311486661,58.8235294117647,2.833213344056216,5.0625,245.53125,0.004418565891683102,32,775,22,15,16,17.609772959999997,7139.065088757397,20739,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2.604996,2.604996,0.9805467826824813,0.6573415017274739,1.1782229499088681,0.5431972975087536,0.6989197735952695,13557.48,35317.181170079995,0.27138927486837056,2.568691360095545,2.7282413761466016,2.6972833599253723,0.8602873744993879,8588.168956433638,22372.145778833798,0.7274471996438102,,,-0.021907051271832626,5651.96,14723.333192159998,0.17113218074708628,1.6840134059522283,1.8136558963243334,1.8353912582487164,0.9770958913418456,2535.624640324215,6605.292045546017,-0.021907051271832626,"CurrentSlice","Yes",1055.6269998550415,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",5,1,"C - 5",1,1,,,,1412,15,69,56,222.36245855999996,0.7007567067084118,0.5109892563300058,1.4653228882937155,0.2740861633941055,7.201243211141489,1.5166385168633478,25.52570468214345,63.14689986232702,22889.910028116214,5089856.670069119,0.1702401393657811,11821.168887902824,2948.004369154207,20519.80735168043,43789268.888486035,1.2721064049202735,3896.781473256695,39450,467.1106594189315,439.27316794751636,12.823454850769043,6.5526476577758785,35.95179388383688,78.53359239075287,3,57.99494778341062,1,57.99494778341062,1,57.99494778341062,1,0.17072363855414557,0.9272650041754829,0.538872136665352,7.565858101212388,249.42127990722656,538.0967407226562,0.0021274781320244074,3328,-0.14742698199919183,8823.76382380506,1962073.8176140797,0.17094133325174116,2173.5649655118855,6936.341008642332,2907.5418533641914,6204694.315079184,1.2721064049202735,1508.3459523397187,22040,1.5152598849672942,8.287724591464961,0.6789701086264338,7.380811425870606,657.0888671875,85.88321685791016,0.013051842339336872,3331,-0.14742698199919183,0.10079842051549753,-0.3873246725715749,0.5520474945300305,7.547987133094218,283.5777587890625,222.82229614257812,0.00552885327488184,3247,1323,0,312,189,1947.8076091199998,8681.48274755256,61216,2,1.6671974399999998,3.3343948799999996,1.3198807354611621,0.41296578082960356,1.8630308198114678,0.17517552540262005,0.6836392247161637,7218.928571428572,24070.758467657142,0.1347728082947025,2.6106947326121155,2.65451101568888,3.705747357626534,0.981666363383672,4499.433896604189,15002.889347735454,42.723292104999054,55.86951968658942,1,2878.125,9596.805263999999,0.09772389279395445,1.1834410709119592,1.214346124585705,1.2024273051576262,1.0080339228155335,508.022323564217,1693.9470346182284,0.2869631411322282,0.2869631411322282,131,1.6131089734351143,211.31727551999998,2.355156862834095,0.708485212284953,1.386281556863772,0.4962216425882011,0.5478293058263615,12705.40548106382,2684871.6706352816,0.18269012709046673,1.417482562323992,2.147553885662784,2.0673907569500285,0.9645244390375036,6789.183510622952,1434671.762470151,22.955248192144172,3.0597979977577134,4.33587786259542,0.1281843655015245,4578.314144992204,967476.8715944308,0.08832871279641118,0.9254357930113657,1.931694432697398,1.88747008842622,1.0005152777228514,2208.211468556421,466633.231307361,0.1281843655015245,"CurrentSlice","Yes",527.6499998569489,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",5,2,"C - 5",1,1,,,,285,0,21,4,6.356190239999999,0.42468087284425193,0.18535625580031273,2.79943470109534,0.0664436951056474,1.6828433645548844,16.389393722031798,6.4559999999999995,13.714248827604209,9124.344262295082,57996.06794639999,0.14176639024163565,139.22640161367593,3791.695341343275,6515.296665111122,397433.0965717784,1.2733530298389542,1293.525349387554,11422,95.15191475409834,452.4650557377049,3.310161960983276,0.613559227180481,-0.09691329395132914,69.71659985777293,5,48.942350666110485,1,66.18693072101748,4,56.808478311928496,2,0.18120540747415875,-1.2600454000141605,16.930932545014784,4.088147727105772,16.64102554321289,90.74359130859375,0.011901302263140678,78,0.1650054074288698,8822.524590163934,56077.64469215999,0.04589339526087075,72.3559173230531,6928.57705869656,2786.6609538002976,169986.31818181815,1.2733530298389542,404.89560821514516,9916,1.0418127657174059,0.6921785508244311,16.393442622950822,4.110873864173311,18.090909957885742,84.57575988769531,0.01197577640414238,33,0.1650054074288698,0.7029283064250315,0.10736561060226757,16.393442622950822,4.110873864173311,20.428571701049805,116.53060913085938,0.008704952895641327,49,118,0,235,130,845.0607023999999,7448.286066584464,16663,1,1.3545979199999998,1.3545979199999998,0.9561611214257789,0.5850221657465755,1.378468571874233,0.37669497754791037,0.5451470833509865,7263,9838.444692959998,0.10733444497077584,3.8562673075107323,2.458485571244441,2.9206015757435946,1.006170078202488,4308.742271196817,5836.613318379283,62.4350678463801,,,3131.076923076923,4241.350287359999,0.06353827728967973,1.271824465761539,1.2000842477754745,1.099363414593276,1.015031911382877,522.0293258929619,707.1398390336082,0.14033328650224006,0.14033328650224006,15,1.0419983999999998,15.629975999999997,2.582966353272013,0.7899153076593021,1.36660961790316,0.522532956331175,0.44089821447484046,10905.947130647131,170459.6919092835,0.12416269871446975,1.4042119839859155,1.8068577734167506,1.893867808552104,0.9941493066285141,4870.083494283495,76119.28813364716,22.31437332746816,3.41340562998173,2.2666666666666666,0.21445550364830127,4166.109242979243,65116.18748114373,0.07334514638035822,1.000891154438653,1.596793116183804,1.4191961126458512,1.0080324877693525,1557.0616457952824,24336.836154300763,0.21445550364830127,"CurrentSlice","Yes",540.856999874115,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",5,3,"C - 5",1,1,,,,886,14,63,46,193.39490303999997,0.7688798438511141,0.7171980694882841,1.2865761480884603,0.37238051038051656,6.292892498765351,6.293610514470518,22.261501275520477,56.220953379514384,28544.940193965518,5520445.94109456,0.1540762805806373,12078.259680973104,3860.078168202974,25735.72232799463,47765500.64075803,1.431640146782275,4398.098214482942,43198,295.9481185344827,441.06393685344824,10.227475760650634,7.335125871276855,30.18184102214371,13.94898255118768,1,13.94898255118768,1,59.92552476617507,3,59.92552476617507,3,-0.4338833207742448,0.9140981911978971,0.6171735656956004,7.4281339448940695,211.5481719970703,820.0172729492188,0.001378029352054,3010,-0.12289719285734406,10270.744612068966,1986309.6583996797,0.14427214461130272,2016.123542353613,7174.110501967467,4243.900578836337,7876679.474320242,1.431640146782275,1481.782351938172,20824,1.175422819845237,3.7072468236491734,0.7547748216409037,7.273926889505336,544.655029296875,114.40824890136719,0.009531030431389809,2812,-0.12289719285734406,0.4807513644622191,-0.2887334020479293,0.6218183338287753,7.424018551564577,244.7867431640625,199.18650817871094,0.0062023610807955265,2654,768,0,407,327,1927.5928401599997,9536.867506351695,57536,6,0.8335987199999999,5.001592319999999,5.4271397934056544,0.7251176040269486,2.064011075094252,0.24522704311646346,0.42680015685932127,9689.106597222222,48460.961144328,0.11781717891396855,3.076470610885195,4.7098416094784845,3.841268406764948,0.9787976263098274,7631.902257755043,38171.66371937828,43.55295378999661,32.890999445943756,2,3604.194444444445,18026.71125312,0.048577061130776235,1.0020886835553864,1.2829885813070634,1.2289671180342625,1.0019428345583565,794.9765784735578,3976.1487494732232,0.45139999534915787,0.45139999534915787,94,2.173786023829787,204.33588623999998,1.843591815944709,0.6939990841767969,1.4517569408854014,0.49701585599354997,0.6605340211243115,14135.510910788196,2888392.1494110953,0.19956090344669,1.7026518412239358,2.345425040509354,2.4702902075823197,0.9511199157986417,8108.666877555568,1656891.6326502503,56.34442521627973,3.27715740608789,4.148936170212766,0.10275434967334086,4922.539297800364,1005851.4299672645,0.07919820151959546,1.1264249900332453,1.7522810734720629,1.6495468970466045,0.9996111609223152,2113.3214318294768,431827.40768286184,0.10275434967334086,"CurrentSlice","Yes",554.0429999828339,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",5,4,"C - 5",1,1,,,,831,39,48,53,152.96536511999997,0.7266021487387383,0.4621801780260906,1.3833479645852482,0.3116472756300328,5.8032643684715834,1.2597756693820847,20.669285038433234,51.434337103646314,34358.50136239782,5255660.7058752,0.15332121761191,10149.23490380049,3983.5534327491,31250.310027025753,45875455.1196738,1.2087721925530317,5267.887264203303,53941,275.9071430517711,432.0308583106267,10.536891229248045,4.869942264175415,49.921044226813486,42.5166838452657,5,31.8853605434186,1,49.72295097914879,4,41.92337145602981,2,-0.4408506173560592,1.326546901772347,0.740595000334103,7.231806214014843,145.3715057373047,1178.1429443359375,0.0009593999711796641,2428,-0.22143682699721273,8986.354904632153,1374601.0590849598,0.260255022234572,1573.473150338154,7434.283283479737,3059.8433857738455,4491850.090316005,1.2087721925530317,2338.743995512796,25454,2.3457643174033427,9.120882066738718,0.8556749251980489,7.122938466238351,375.690185546875,94.275390625,0.01319175586104393,2324,-0.22143682699721273,1.6020158722026332,3.927515726170137,0.7600843424481584,7.213150839935275,176.1666717529297,178.8963165283203,0.008148206397891045,2064,711,0,219,141,1167.6634070399998,8462.892736034268,61009,2,0.20839967999999998,0.41679935999999995,6.283185307179586,0,0.7853981633974483,0,0.1614,5578.75,2325.2194296,0.04913652089001319,0.84009375432324,1.384668870243807,2.167908003368332,1,1549.8084097859328,645.9591533213944,35.42011978356705,1.9502036201381638,1,3678,1532.9880460799998,0.06386821147245661,1.0126557743449647,1.1833248352967696,1.2414085768636627,1,569.8086646279307,237.49588673937615,-0.0000450695484449648,-0.0000450695484449648,62,1.9529066787096772,121.08021407999999,2.5536091097862506,0.7093116487386532,1.5662990551183562,0.43873303178867135,0.6227626668297364,11653.19051084366,1410970.8017679749,0.16835808500903754,1.357836312173919,1.9662815931029438,1.9342001699567801,0.9732871784142284,5726.678991985353,693387.518317025,16.25265264950761,3.281872750754239,4.161290322580645,0.10162298964148432,5540.980155978555,670903.063498915,0.09284372203955658,0.9482447172089697,1.7827024008852614,1.8277462720693196,0.9990888217378616,2432.7888206064854,294562.5912104639,0.10162298964148432,"CurrentSlice","Yes",567.3829998970032,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",6,1,"C - 6",1,1,,,,434,11,40,24,66.58369775999999,0.718176454037616,0.6482502417522004,1.214590505577464,0.47484174781606414,3.587640932280855,4.687678473084112,12.69223985906349,34.13290924149333,42332.45852895149,2818651.6241294397,0.13401038571449397,3040.443786653803,3833.702842956297,39165.65813173202,25026855.54617676,2.2931206698269615,5672.989095707609,53843,145.72172018779344,445.5620018779342,6.020612072753906,3.902863231658935,9.744450437187266,14.475074324262456,2,6.943103289250469,1,35.28544839769547,3,24.214224051087797,2,-0.6863940830252384,-0.3714638526197849,1.6335187266880713,6.429531807968022,53.09677505493164,1737.2137451171875,0.0006282286485657096,992,-0.47688393291632847,15068.025039123631,1003284.8250451199,0.18474868452583093,1044.694688084749,6570.96908914988,9752.074233226449,6231575.435031701,2.2931206698269615,2783.7978043803732,27035,1.0736340856406108,1.839347882439517,1.697194119332584,6.401328636302046,120.3841781616211,241.50094604492188,0.004689154215157032,1062,-0.47688393291632847,0.508214202864796,-0.5326794573185802,1.6824997979530811,6.409187680591116,81.26243591308594,197.8772430419922,0.006383687257766724,945,252,0,272,114,1420.1396193599999,9490.886565411989,36906,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73,1.8370574531506847,134.10519408,2.1184651691783367,0.7140870313420762,1.4972781343109822,0.489729592130302,0.6160509322445757,13616.207836989075,1826004.194613037,0.17258506848378757,1.0304957859026884,2.561387103485629,2.5830422951862846,0.9793368678345514,8300.257031091893,1113107.5800684628,21.04142118552018,3.0629129501380694,5.260273972602739,0.09119756364645404,7170.791964493914,961640.4481057606,0.0798708559688533,0.7343590315345763,2.2643649946457196,2.3176449500118053,1.000351651482905,4003.99156727445,536956.0662240235,0.09119756364645404,"CurrentSlice","Yes",1002.8529999256134,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",6,2,"C - 6",1,1,,,,1505,0,85,39,213.19287263999996,0.27606224266865315,0.4695989576954806,1.6915484429128647,0.35906458044399325,7.575976329720205,2.014554288638741,27.949708414936996,98.51168937960139,23653.12512218964,5042677.69171296,0.16821670724584262,9035.819023225014,3595.229756730619,20502.304818172266,41947715.65798046,1.4246046418568723,3978.85082412866,31411,499.9302680351906,447.92081407624624,13.714700006103515,6.440408827972411,-1.208203653679031,51.2534757690486,2,38.62085839247107,1,57.30795015192806,2,38.62085839247107,1,-0.9576082430236884,0.34599939074880837,0.5709349669239935,7.509631998902339,185.0975341796875,547.6766357421875,0.0021496631670743227,2440,-0.26613319448756717,9491.952590420333,2023616.6397143998,0.19077315489567992,2228.581866604172,6662.867936502184,4065.954942935715,8318943.813246473,1.4246046418568723,1810.8097417947085,18932,0.39816185266031706,0.2700927360466574,0.6478559122585232,7.412624302008971,339.9468688964844,96.78272247314453,0.012202687561511993,2315,-0.26613319448756717,-0.0816242915242231,-1.335580071086381,0.6029455466594811,7.470984402266295,196.50738525390625,134.59591674804688,0.012303991243243217,1762,1481,0,183,133,1328.33956032,8839.111468465642,37352,1,0.41679935999999995,0.41679935999999995,2.156048337810589,0.618033966833844,1.1780972028066488,0.2546440075000701,0.27955300034161673,6186.25,2578.4250408,0.04213495124153751,1.3685041019292954,0.961742757941649,2.7169992463527204,1.0201791607732202,0,0,11.322413681821768,,,18032.25,7515.830259359999,0.11248568618628754,0.7998012094468215,5.723033451640655,6.2197542157549215,0.9924856853692691,14881.429695982628,6202.5703731705535,0.21163255462264566,0.21163255462264566,41,2.279689182439024,93.46725647999999,1.4326046419333867,0.740374548921651,1.2813348429452187,0.5655782703979444,0.6503436841969222,14998.121046386052,1401833.2265606509,0.16452629243085287,1.4613285992585814,2.7641222906425096,2.7067756742864493,0.9610211554195384,9572.123398901433,894680.1127833296,17.79808483233853,3.188662855063619,4.975609756097561,0.15131022667372057,5956.524498822053,556740.0030608042,0.0789153909367276,0.8335485731762166,1.8904678541100357,2.020700379421335,1.0003755086138229,2805.7041948046804,262241.4735828209,0.15131022667372057,"CurrentSlice","Yes",1016.0329999923706,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",6,3,"C - 6",1,1,,,,1509,2,3,1,0.31259951999999996,2.356194490192345,0,1.3962632993646453,0,0.2635650962927869,18.15080154066121,0.6456,1.2912,5606.333333333333,1752.5371089599998,0.04063007039992691,4.142911611159491,4620.1862347754195,2865.3180958071903,8595.954287421571,1.2702004258506212,227.78571801879022,5857,487.42799999999994,452.2428,0.5591059906482696,0,0,50.356984501137084,2,50.356984501137084,2,50.356984501137084,2,50.356984501137084,2,0.4265468630173026,-1.499999999999997,333.3333333333333,1.0986122886681098,4,36,0.02777777798473835,4,0.5913363032949249,8519,2663.0353108799995,0.008918145281475562,3.794261699597741,6706.815575419951,3304.9841649238124,9914.952494771438,1.2702004258506212,75.97367965289031,8577,-0.5851024021240183,-1.5,333.3333333333333,1.0986122886681098,4,81,0.012345679104328156,4,0.5913363032949249,-0.707099937065975,-1.499999999999997,333.3333333333333,1.0986122886681098,4,64,0.015625,4,1465,0,77,23,125.45660735999999,6740.141196013289,10235,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1029.2199997901917,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",6,4,"C - 6",1,1,,,,1634,0,30,15,30.947352479999996,0.6220967475249018,0.6901488757997739,1.4796334510513545,0.3421496198510279,2.6995967291240794,0.707159673657358,9.96506134050363,25.002746482812633,14248.387205387206,440949.8611166399,0.27290587445837416,705.9040088743208,3507.7416891409675,11489.25101259481,3412307.550740659,1.0832457723510809,3888.4685699077054,21721,533.2232121212121,451.1374545454545,4.447227436065673,3.0692490154266356,14.347102774576452,82.31522467240951,1,82.31522467240951,1,82.31522467240951,1,82.31522467240951,1,0.0983959771447779,-1.0503047710705569,3.503043907084311,5.665726192113409,28.745546340942383,211.933837890625,0.006424456834793091,393,0.6169799337284548,7344.111111111111,227280.79520783998,0.14388214285437181,319.51381539193966,6779.727462191173,2136.8232490726414,634636.5049745744,1.0832457723510809,1056.6864440272682,11633,-0.09160417860421995,2.3939104841327747,3.7071047172057274,5.623717272079473,47.086124420166016,60.69377899169922,0.020346587523818016,209,0.6169799337284548,-0.5292724395616141,-0.725787784656081,3.457697060390663,5.675061507676506,31.5546875,126.68359375,0.010431231930851936,256,1632,0,32,38,55.955314079999994,7112.832402234637,16560,1,6.043590719999999,6.043590719999999,0.17660015851050956,0.05627418251363089,8.61651592093271,0.006209630281535428,2.8788791226250336,13423.413793103447,81125.61903071999,0.07422579134818659,4.183570002742257,7.365826666447509,6.026425075123188,0.9949141113381644,11601.023123194096,70111.83568984125,4.6739759358407,,,9795.758620689656,59201.55589535999,0.6062972897154039,2.457780806612283,3.5502990560157235,3.4094384095531387,1.1804218271177538,7036.622427897261,42526.46600538375,0.6180126257731436,0.6180126257731436,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1042.4299998283386,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",7,1,"C - 7",1,1,,,,422,51,51,60,194.12430191999997,0.7674967923438317,0.5570554878209967,1.2923092167391281,0.3688352221300586,6.318780341207797,0.9947606840670329,22.38286913512206,56.37760220711859,27217.947396672036,5283665.038074239,0.1573327702597662,10112.289569055656,3806.4537198906924,24102.065043730858,44902147.176470585,1.3958428642991783,4282.2750647030025,40983,144.24741642512075,426.79080837359095,11.040041001892089,6.149915425872802,126.6253508993847,74.49605685084533,2,37.650485040606156,1,78.82640502356348,3,68.0326121319761,2,-0.44698357238051634,0.9824718016855969,0.6064938346516291,7.441757953088929,205.16603088378906,742.3944091796875,0.0015377894742414355,2903,-0.08077867781225462,9078.714439076757,1762399.1028168,0.2067142850716937,1906.4686322501689,6504.109216931792,4024.2829569867145,7497239.148866249,1.3958428642991783,1876.6999646438146,20007,1.0198077684294953,2.7915334500832634,0.6894725635730871,7.344872263045151,485.3603820800781,92.30738830566406,0.012739096768200397,3019,-0.08077867781225462,0.4546258226808,-0.5722372276415291,0.6399158226894386,7.402866806058021,251.63165283203125,183.06259155273438,0.006946685258299112,2780,404,0,135,164,1013.2392441599999,8911.372994652407,59816,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,59,2.1934949369491523,129.41620128,1.5730718528559355,0.6609958034206359,1.5837612743109046,0.4303467343159718,0.7147481761078115,14300.426869367626,1850706.9221160007,0.24337697408208128,1.340747793252488,2.8292849393725086,2.8450938843040876,0.950174769707181,9245.995387277584,1196581.6000738672,16.585236459313144,3.396366600171376,4.711864406779661,0.13003209693738854,5738.318633980428,742631.3993439856,0.10023232912631184,0.745193847138143,1.8416352044113133,1.863434960235634,1.0075975392077043,2622.4362810392513,339385.74159095035,0.13003209693738854,"CurrentSlice","Yes",1055.6269998550415,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",7,2,"C - 7",1,1,,,,146,0,35,56,172.03393583999997,0.8215712897737122,0.6439668548483188,1.1324004811072905,0.5490105284147322,5.568230015966361,2.208526154518841,18.680611985692547,51.29669296562526,24156.991520290732,4155822.3292891197,0.1229129644857307,8634.529815210457,3871.5766530090436,21507.553016208563,35508970.02976034,1.1423212271763814,2969.2074408155927,34859,52.83303379769836,444.49344930345245,9.363010134887695,6.029468188476562,95.86337721821047,42.563862281999384,2,42.563862281999384,2,42.563862281999384,2,42.563862281999384,2,-0.4745415985534809,1.4939580299043067,0.715019181517653,7.29225292496093,233.71856689453125,584.2698974609375,0.0018537284340709448,2338,-0.1882394184029027,7344.6626287098725,1263531.2194339198,0.13413408476886254,1653.678314212652,6429.5948057137975,2525.960100398047,4170360.1257571755,1.1423212271763814,985.1695996380669,12916,0.33233044524250227,1.8053588066970097,0.923398296500735,7.085628563299802,504.05145263671875,59.61456298828125,0.018411163240671158,2060,-0.1882394184029027,1.3342515269340818,3.9372684423126945,0.7847234629380502,7.221207040517624,294.755615234375,186.5177001953125,0.006002630572766066,2005,0,0,226,64,643.22561232,7335.948647335169,19589,2,29.280155039999997,58.560310079999994,3.3331234730096915,0.37056302302985145,1.7255790017488977,0.0388898850699409,2.568515146054494,13316.166071428572,779798.8142196324,0.1323787540082311,1.9848275485614337,5.979502070053831,5.356594364909577,1.00951602407478,11089.197016911849,649386.8158485688,35.3725344861821,8.486569849219178,1,3224.620535714286,188834.77846176428,0.06697096633448198,0.6211206023467455,1.217095822660497,1.0803578378631473,1.0149088975183327,575.1820316321155,33682.83812482105,-0.2450007101336304,-0.2450007101336304,5,0.72939888,3.6469943999999996,4.797205645171909,0.758674260886685,1.389970636630298,0.4433132356521795,0.32104956815462593,12059.45,43980.746617079996,0.13179609531297265,1.858380204074162,2.5026342525079848,2.3499464506741004,0.9698063360140641,7240.747471688175,26406.96548106093,21.026493018063192,8.970217960994113,1.6,0.2263666098140696,5850.922857142857,21338.282894831995,0.053323338340150815,0.8297001115696357,2.2083633374120373,1.9107426976440385,1.0009873253920678,3201.4843530606863,11675.795507299945,0.2263666098140696,"CurrentSlice","Yes",1068.75,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",7,3,"C - 7",1,1,,,,23,0,12,8,7.814987999999999,1.0373446900129322,0.7513817785822382,1.072747348495143,0.6308397085515096,1.1551089280444544,0.15419242155965507,3.680486272220017,9.72988137934035,2692.76,21043.88708688,0.027278379740757225,74.87515061636853,3932.8804336864487,0,0,0.6781593089183079,73.45412983072143,2849,9.227775999999999,451.78657599999997,1.8469546628952025,1.3877680795669554,-10.268261173979322,11.191604790742664,1,11.191604790742664,1,61.62986129324431,2,11.191604790742664,1,-0.14038049148487255,-0.3507841001146259,17.6,4.11869558155327,20,9,0.1111111119389534,20,0.0991674228143264,4610.706666666667,36032.617271519994,0.023209258895252268,74.12314452601683,6798.854791245046,0,0,0.6781593089183079,107.01108471673227,4877,0.020855217133330453,-0.22773486364591333,15.822222222222223,4.188100639831787,20,25,0.03999999910593033,20,0.0991674228143264,-0.12086333327759714,0.9146045507927352,20.444444444444446,4.007792032663679,20,4,0.25,20,23,0,13,9,9.06538608,4618.229885057472,4877,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1081.8669998645782,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",7,4,"C - 7",1,1,,,,0,0,44,25,95.23865375999999,0.7906567824879177,0.5694530959512605,1.2073434588993128,0.4888216805806429,4.277914472121239,6.760262418746918,14.290965201832938,38.906087172482806,22353.495623632385,2128916.8300248,0.14428737713437104,5008.041176677825,3802.6784174204677,19333.97593625605,17671254.00573803,1.0239668127026353,3225.327253318558,28839,6.9144183807439825,449.5442061269146,7.43485814666748,4.233802989578247,0.8595729695799635,63.45673935176623,2,44.09001348045901,1,63.45673935176623,2,44.09001348045901,1,-0.8452286988995366,0.2404880648129697,1.1850667228476075,6.761138952739489,92.9325180053711,481.9765625,0.0023313730489462614,1067,-0.0332050413556023,6761.066739606127,643914.8942616,0.10505073532626395,810.4693297374273,6602.818231736551,1611.5211321664756,1472930.3148001586,1.0239668127026353,710.2550325855697,10768,0.44138800205017287,3.0232844082807064,1.6016356314849485,6.524067809841715,203.976806640625,52.102317810058594,0.020914359018206596,733,-0.0332050413556023,-0.045326899158036754,-0.2377764984526678,1.2712533936001609,6.712402771529411,123.19812774658203,139.5997314453125,0.007824612781405449,747,0,0,180,199,1685.1198124799998,7575.924004452139,37810,1,15.629975999999997,15.629975999999997,0.19110969724423182,0.09209594629623892,6.2455889469079295,0.015648934147323934,3.941630481757516,15288.96,238966.07786495998,0.0954054970826643,0.9837398315248017,1.4473927663314037,5.834817614304531,1.0159980597782339,4725.856220815194,73865.01931079218,7.648687698645513,,,9524.666666666666,148870.31140799998,0.6848661800341652,1.0369560243060263,3.154364817188081,3.2844198168304355,1.11866965365222,6505.14697929033,101675.29116278034,-0.2309879699179099,-0.2309879699179099,126,1.8177083199999997,229.03124831999997,2.0655332040654035,0.7318911957263811,1.3970014617692739,0.4977821861151319,0.5876313772763697,10692.004436093055,2448803.1230413695,0.17597299948977008,1.124884010097182,2.076300561479852,2.0278178544118854,0.9579488942283433,5542.4588286534035,1269396.264288694,28.600743300305915,3.2608081635888784,5.857142857142857,0.08796148151313499,4226.715634279142,968049.9580126124,0.06254166992577005,0.7821406155014873,1.3997973425872048,1.4117126851265724,1.0009801964196807,1207.1959469028066,276485.5946859942,0.08796148151313499,"CurrentSlice","Yes",1095.0529999732971,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",8,1,"C - 8",1,1,,,,766,0,66,18,88.88246351999999,0.5039667553588156,0.30624784727839005,1.9307461491736317,0.16976052365786087,5.226135981499787,4.558708451144669,20.98448293001283,47.077352275955086,22824.235638921455,2028674.2915483199,0.175897513008431,3430.168433225404,3693.9615101247614,19631.739880203266,16745874.117813386,2.300257212269129,4014.726285204681,29737,257.520227901524,450.6465861664712,9.994135828399658,3.0606825828552244,-0.9253500677394845,18.912585147160552,1,18.912585147160552,1,53.55743340680529,2,53.55743340680529,2,-0.9017979071752142,0.11507282689877929,1.2355537108529444,6.712391758407972,67.11494445800781,493.6206970214844,0.0024551223032176495,957,-0.168520140886505,12503.425556858148,1111335.2659324799,0.22440975889994735,1335.3790641422938,5435.664103199974,8432.762031881712,7193146.0131951,2.300257212269129,2805.890714637977,27604,1.8242663116774023,3.9861671072028066,1.3455028731090461,6.650419149037832,94.02644348144531,195.18028259277344,0.00610960042104125,832,-0.168520140886505,-0.42478470697432824,-0.7472794056692322,1.3207643116014234,6.666057713477966,80.34087371826172,280.773681640625,0.0039050844497978687,707,737,0,272,35,563.0959353599999,8699.74185788305,31402,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,2.1326233919999997,31.989350879999996,3.477606050145547,0.6527554508872392,1.840217183565308,0.3838211806027085,0.688659228295098,10553.740147099654,337607.2966619136,0.11615892252291891,1.401896442122891,2.5926338746361366,2.505595068775805,0.9772827172242228,6483.076622123217,207389.41284702474,30.3527235658411,3.74925286604209,3.3333333333333335,0.2319941164919123,5562.434138810075,177938.6574132861,0.07885139165743572,0.770075327712026,1.7423466025350123,1.8671676509715307,0.9904862954595082,2369.9383800918845,75812.79040473809,0.2319941164919123,"CurrentSlice","Yes",1528.816999912262,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",8,2,"C - 8",1,1,,,,355,0,43,51,149.21417087999998,0.7447922157762092,0.6830767411817276,1.2099662312686585,0.4474704607280472,5.360456179499124,0.5458232397738056,18.891385655901473,50.17558013810806,30755.768854748603,4589196.549438239,0.19975771878025858,6679.888634303703,3791.4466152397395,27608.275737911328,39535050.85668902,1.5501206778643553,6143.702225757507,45801,121.41337541899439,444.7615944134078,8.852744808197022,6.047104074096679,122.79176639802114,48.13660727628835,3,43.91639435454696,2,43.91639435454696,2,43.91639435454696,2,0.23651396419263507,-0.45100864304687294,0.7470896663649699,7.218423214799926,101.46398162841797,962.6905517578125,0.0012334417551755905,2207,0.14550053343893612,8908.78002793296,1329316.22542032,0.1663117523383505,1642.238089899599,5747.152563764801,4335.623303612452,6208612.570773032,1.5501206778643553,1481.6348176424297,17355,0.81568174313907,2.1337380241291646,0.8992384757030055,7.076570716891965,356.3150329589844,87.57046508789062,0.01285257376730442,1930,0.14550053343893612,0.5070617633399959,0.5312478680684767,0.7617193595705503,7.203901974983725,102.2757568359375,338.80303955078125,0.004666424822062254,1980,323,0,129,87,539.02577232,8083.998840131452,20394,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,1.591942,28.654955999999995,2.286742988232165,0.7161265874424889,1.3458826038109148,0.5001392606825923,0.534320412791436,10216.505364198334,292753.5116848672,0.13728583497576377,1.3390557638926741,2.234016015647557,2.3054214720516453,0.9687520656385232,5643.348639877826,161709.90696835893,13.634877070731442,3.0631711455941866,3.6666666666666665,-0.018013705631631405,6589.014867164953,188807.93110195757,0.130698486228544,0.8960300414174236,2.0934167677500293,2.2149649070514115,1.0107393697923457,3441.521750327678,98616.65432868259,-0.018013705631631405,"CurrentSlice","Yes",1542.0169999599457,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",8,3,"C - 8",1,1,,,,329,0,29,16,35.94894479999999,0.785661053162556,0.6289320611817458,1.1923147929520381,0.5471043865466189,2.611852220400471,12.057741139596875,9.044162448784299,23.9789627586807,23016.71884057971,827426.7550771199,0.1501340176458242,1868.973210311222,3733.4516300551804,20107.542730079003,6937102.241877256,1.5999685174804401,3455.5924725605687,28290,110.50894260869563,450.8496139130434,4.421646351242065,2.780915153503418,-4.2430248565855795,49.45527911203246,3,45.77156013292836,2,45.77156013292836,2,45.77156013292836,2,-1.1148177486892068,0.4085161246433211,3.1337954211300145,5.7872889936815675,40.55045700073242,502.4816589355469,0.002262420952320099,436,-0.6273231692089467,9149.350724637681,328909.50415583997,0.18425813460621449,418.0760964569573,5718.456722539563,4754.346957568147,1640249.7003610109,1.5999685174804401,1685.8422973797558,17866,1.4997291390272949,3.092674019501783,3.201008191556396,5.773717598820338,48.81208038330078,104.40604400634766,0.011081088334321976,298,-0.6273231692089467,1.2298081837398886,1.4317914086381993,3.032976265490443,5.811398460831478,36.70542526245117,426.9198913574219,0.0026051150634884834,387,212,0,177,305,1605.0943353599998,7585.940664762399,41386,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,112,1.9286273957142857,216.00626831999998,2.590754049501541,0.6707919074516485,1.5053959512106814,0.4075807210377454,0.6094019627673652,11541.189180722155,2492969.20690295,0.16988419465115406,1.2894293499738991,2.625979360290173,2.624176577532769,0.9725887637347784,7146.185413652621,1543620.843925918,34.50287936554981,3.0979710127593023,4.767857142857143,0.14761432953915446,4670.465293567105,1008849.7793815035,0.07303893734383149,0.8191113265793317,1.6054254249885402,1.5716504025708258,1.002105069985207,1761.2891830663984,380449.503866554,0.14761432953915446,"CurrentSlice","Yes",1555.1129999160767,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"C",8,4,"C - 8",1,1,,,,24,0,9,7,4.376393279999999,0.971038457823946,0.7530495670938487,1.0544060871318361,0.7172711912577752,0.8569829912821669,0.08263290366320009,2.6024968011507714,7.52566510347228,2450.8333333333335,10725.810530399998,0.03395110506457534,42.188204434607975,3785.153529697716,0,0,0.6704989983241436,83.2084999957634,2659,9.007657142857143,451.95842857142856,1.3691630945205688,1.0310476756095885,-3.0702016550008024,11.140152113236562,1,11.140152113236562,1,29.560572283048305,2,29.560572283048305,2,0.09068806242537422,0.4411262982107629,29.478458049886623,3.5726345752929056,16,9,0.1111111119389534,16,-0.08909770638417244,4066.0476190476193,17794.62347616,0.02463561916785934,41.897448478900884,6064.211325013708,0,0,0.6704989983241436,100.16960066123835,4267,0.12864774929507633,-0.7644571181140711,23.809523809523807,3.737669618283369,20.512195587158203,20.390243530273438,0.051524389535188675,41,-0.08909770638417244,0.01428182697674598,-0.3207749123801533,28.34467120181406,3.6056415838909985,16,4,0.25,16,24,0,9,7,5.418391679999999,4067.9615384615386,4267,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1568.159999847412,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",7,2,"C - 7",1,1,,,,339,0,52,20,79.92127727999998,0.6369552240691506,0.4443743408129322,1.4434132929491514,0.3221830063573421,4.284859968606484,6.358290376104576,16.465964401759162,39.708336000087016,26561.800521512385,2122853.02453584,0.20559449647709344,4533.760597352148,3871.5766530090436,23617.450746497132,18114584.7225633,1.5633154670316765,5460.9600037453365,36077,116.99921773142111,450.27022685788785,7.8311514701843254,3.4799627723693844,-2.1490382417115446,82.95943249901953,3,64.42569611210862,1,85.6064135737902,2,85.6064135737902,2,-0.5205682170710128,-0.5909551032958849,1.3581759985313342,6.614693237403028,49.46938705444336,677.1091918945312,0.0018289146246388555,980,-0.32870226519879014,10051.485006518906,803327.52028176,0.15159277532017318,999.6905652446924,6429.5948057137975,4877.864067684251,3741321.7399138203,1.5633154670316765,1523.7325082273098,16655,1.0117799800563212,0.9045814775434278,1.5757561334650145,6.5068946512359025,117.33631134033203,117.91963958740234,0.009368565864861012,672,-0.32870226519879014,0.0533156286695324,-0.17866253614482286,1.5077623412982395,6.537417019078955,98.52412414550781,137.0465850830078,0.008091920055449009,601,219,0,223,401,1979.5885603199997,7806.3316138540895,36388,2,11.514082319999998,23.028164639999996,0.45080585707708243,0.4338926654137757,4.335367746586281,0.08580675122548886,2.7934517647890025,13317.196153846155,306670.585573944,0.1563430361353309,5.826220568010396,5.528514937312679,5.357008728446635,0.9652974378155483,10908.37637044164,251199.8870136157,73.26473615888837,41.50857438840688,1,3967.6,91366.54602566399,0.09432057484550227,1.3177563544085737,1.3475301180816555,1.3292812937309961,0.9715809366924372,1023.2502249847466,23563.574648865786,0.14983161265353168,0.14983161265353168,150,1.281658032,192.24870479999998,2.684592114026117,0.7224982755052035,1.2592802783551962,0.5389235128043233,0.45532321096112766,11008.939220084885,2116454.306283241,0.19200649466609468,1.404000521793419,2.127898303768003,2.1452402593754583,0.9517859405189961,5835.31828125023,1121832.3816661187,31.089453592061755,2.8840440151614812,4.333333333333333,0.12511388374210508,4707.033615455476,904921.1160213766,0.06783829047675917,0.9252261864196676,1.5986665902936383,1.5371814546002263,0.9995920963189641,1762.6838404402229,338873.6852965226,0.12511388374210508,"CurrentSlice","Yes",1068.75,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",7,3,"C - 7",1,1,,,,617,0,54,62,224.55065519999997,0.7507545680605359,0.6704733233167903,1.245864857944982,0.4126585138660368,6.672716689879067,3.217898888149046,24.097836175059367,61.307428965712276,23520.12946635731,5281460.48205936,0.16883102302165062,10806.503091469638,3932.8804336864487,20482.799281552383,44140432.45174538,1.436884749802439,3970.927519406774,34720,207.48640315545242,443.45110607888626,11.084644203186034,7.431958236694335,122.57113043276158,62.38331412023669,5,44.79010855315195,1,64.57543473834536,3,44.79010855315195,1,-0.23571891663055497,-0.04792545835757789,0.5260522930001453,7.584113404231956,224.88063049316406,557.4737548828125,0.002059927675873041,3217,-0.17533266857761456,9769.170765661253,2193673.69618992,0.2178198408127258,2240.3995057375237,6798.854791245046,4591.406836845373,9894481.73340178,1.436884749802439,2127.9192210486685,28664,2.3369560613614038,11.49357440731861,0.6444840413219136,7.430861887595997,494.0927429199219,107.67912292480469,0.011083519086241722,3051,-0.17533266857761456,0.13340173772930508,-0.030347946627468758,0.5251909711941688,7.587001930260569,205.54327392578125,197.61102294921875,0.008395572192966938,3085,463,0,263,236,1507.3548854399999,9452.263307064843,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,98,1.9106848212244898,187.24711247999997,2.3205475552228063,0.6690395753340064,1.4943017250522017,0.4381172967289813,0.6100976028498822,15439.376847894484,2890978.733258806,0.2207644219035834,1.3498384996986839,2.9818618732247546,2.965280800605563,0.9532035067953246,10261.612919078605,1921457.3884849327,27.017131880807213,2.9748168031027373,4.775510204081633,0.03759615777352661,5167.779445863984,967651.7791715253,0.07881851644055864,0.7736784579313788,1.7014216866237357,1.648827839267634,1.0020193069029748,2130.4492610590555,398920.4724184578,0.03759615777352661,"CurrentSlice","Yes",1081.8669998645782,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",7,4,"C - 7",1,1,,,,793,0,69,16,80.12967696,0.42183315699168256,0.2572028175623218,2.4999796447510776,0.1002770919861804,5.646443360422101,1.9397848046298931,21.95989206530852,48.857503448350876,23659.954486345905,1895864.5098791998,0.1539433321988686,3383.8287581049613,3802.6784174204677,20331.95524191825,15635273.581035135,1.2988243609570986,3642.292233301659,30763,265.67867204161246,451.0246392717815,10.937509790039062,2.813158335113525,-3.304049495117662,34.90098662364755,3,20.788579034438246,1,65.2214835135443,3,20.788579034438246,1,-0.6398266234772485,0.11712907524995719,1.3612666374684836,6.614886540291798,74.23713684082031,550.3007202148438,0.002071270952001214,991,-0.7435917148319429,8575.901170351106,687184.19042112,0.17209892075144126,724.620195894322,6602.818231736551,3147.6484314013514,2420541.6437476394,1.2988243609570986,1475.9033358884474,14896,1.7531679620621037,3.29174083556361,1.7941663383280264,6.420360473888303,88.84200286865234,94.72447204589844,0.012119336985051632,519,-0.7435917148319429,-0.2531661642601029,-0.685664921928729,1.4559634470315086,6.566654876212936,68.56228637695312,392.7340087890625,0.0027048587799072266,594,687,0,224,58,748.7800502399999,9044.930002783189,38825,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,1.6880374079999998,42.200935199999996,2.033363455144876,0.6572781231212295,1.23497012097781,0.5432468696842407,0.54554968693742,15069.3103252637,635938.9885451442,0.1779201237083616,1.5243257556606986,2.7760885592403852,2.858006346133652,0.9801044980034342,9641.057586313946,406861.64645950316,11.071320144708523,2.8663295236334037,4,0.24159058082994592,6042.629253088958,255004.60554723148,0.0650941234896611,0.8954140702151492,1.8156942983706004,2.018223392867885,1.0027771740578135,2714.6300086613037,114559.92508749111,0.24159058082994592,"CurrentSlice","Yes",1095.0529999732971,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",8,1,"C - 8",1,1,,,,1041,0,27,7,13.858578719999999,0.5045160972513373,0.2732027940723885,2.074267842186924,0.13722472380772666,2.138955885876469,11.491956425756426,8.399005398259963,18.579189517274383,13977.992481203008,193715.10914831999,0.2247897781243041,462.2607533386133,3693.9615101247614,10927.983749932122,1453421.8387409723,1.8002655999261539,3142.109828472815,20446,340.316147368421,452.1141654135338,4.126176309585571,1.1272828966140747,-0.8869110115748822,55.0600324205046,3,31.58597682836992,1,62.817729595848256,3,60.2242440011152,2,0.18864260563717444,-1.0644800317923402,7.744926225337781,4.8695025964755905,19.419511795043945,204.19024658203125,0.005879535339772701,205,-0.279070054969497,9785.63909774436,135615.04976159998,0.11626677724562598,191.65458067641458,5435.664103199974,5614.3590503152345,746709.7536919262,1.8002655999261539,1137.744721183532,12196,0.21794485967865934,-1.0122013878654212,7.971055458194359,4.848656064729426,18.976470947265625,101.92941284179688,0.01040609646588564,85,-0.279070054969497,-0.5920524655181681,-0.6577143291360912,7.6318616089094915,4.879925862348672,16.054794311523438,318.8082275390625,0.0035042078234255314,146,1017,0,221,118,688.0315435199999,6851.133727093746,54249,3,0.41679935999999995,1.2503980799999999,2.998037587915572,0.45217081475827275,1.9537991194518385,0.10179519421816323,0.35457767524156636,7132.583333333333,8918.568505439998,0.08425417046723675,2.8518828491818415,2.3512581640889247,3.008730664811963,1.015030800226586,4099.065601307893,5125.463757669435,63.16619530393182,5.417174496248424,2,3493.277777777778,4367.98782624,0.022468773038093286,1.1245997024684815,1.1453336975603312,1.1925357708474345,1.0046968925127036,443.26904650689266,554.2627646756492,-0.7952449839171317,-0.7952449839171317,35,1.6523117485714285,57.830911199999996,2.445106642736053,0.6659292550583797,1.4568686897320315,0.44368747082408455,0.5634778475756378,11557.679239385636,668391.1217709942,0.22624592360676962,1.7871991191131986,2.770775183629531,2.7439432566146262,0.9426445142999788,7386.39919195651,427162.1957577886,28.824694458529518,3.553065152871716,3.657142857142857,0.15430015630915167,4167.116371453517,240988.1368375945,0.0713396496563476,0.9251272271813556,1.3662637515523284,1.3987949686135668,0.9960568908259422,1117.1076401826317,64603.35274024332,0.15430015630915167,"CurrentSlice","Yes",1528.816999912262,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",8,2,"C - 8",1,1,,,,800,0,62,17,68.04249551999999,0.4225477764633203,0.3861250238743063,2.0478590521378925,0.16620969010418374,4.709233372530768,5.993922084269864,19.6908,44.98390344835087,17285.94946401225,1176179.138964,0.19117096257619834,2681.557755365077,3791.4466152397395,14336.157166672981,9361510.629837457,1.3872205511438822,3304.5715980787418,23219,270.05457886676874,450.86360857580394,8.787568254089354,3.3931000019073485,6.84200463992513,74.25116722539987,5,62.76114386664965,1,73.25977163756222,4,62.76114386664965,1,-0.2808348430160469,-0.9080490399134047,1.6392712161328677,6.43407066053462,60.02627944946289,282.53802490234375,0.004177636466920376,723,-0.5922455557120466,7972.568147013782,542473.43242608,0.11933240364920769,789.8048652787735,5747.152563764801,3362.945618801752,2196003.4890775443,1.3872205511438822,951.3857202402645,13394,1.746248792091184,4.634725277979409,1.9675944926115536,6.296036609172369,109.10799407958984,74.81425476074219,0.014609536156058311,463,-0.5922455557120466,0.5579849609312594,1.149871118541057,1.8925491722735683,6.326039015184395,128.18931579589844,339.144775390625,0.0029843240045011044,449,726,0,439,127,1272.6968457599999,6665.442115605043,17635,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31,2.2991190503225805,71.27269055999999,2.1303094739704465,0.7201445236984383,1.4094474801051204,0.4864088824547831,0.6477672299602336,8835.325422173055,629717.4148114414,0.15896414117662988,1.4690946968476957,1.9167134332797702,1.99374915538351,0.9773863614257894,4225.7028939610245,301177.21475978056,31.340777367138582,3.1131432105842274,3.032258064516129,0.17371844793815536,4428.269389866055,315614.67394024326,0.06744262655032307,1.0602344625435502,1.5012139647460536,1.488608159984855,1.0014201981219255,1478.4770925267853,105375.04031571005,0.17371844793815536,"CurrentSlice","Yes",1542.0169999599457,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",8,3,"C - 8",1,1,,,,439,0,38,55,178.59852575999997,0.8081436825664183,0.6594697856238763,1.12437032151125,0.6032032924222724,5.653321702815773,10.189611407776926,18.78074701389697,52.698660413889115,26713.20420070012,4770938.88857088,0.17105288576613892,10036.48434299394,3733.4516300551804,23696.649986826138,40616058.07742,1.4362737961364944,4569.3706665899,40868,147.71226301050174,445.1266984830805,9.438715640258788,6.224547779846191,91.77277338640228,28.411360220297095,2,28.411360220297095,2,51.243159511185524,3,28.411360220297095,2,-0.13796649616371842,-0.31338193654215285,0.6521896006393909,7.3695344197839,154.03321838378906,725.8319091796875,0.0015688722487539053,2499,0.30258376122431957,8213.269544924155,1466877.83239296,0.25111100234636335,2025.172364510613,5718.456722539563,3794.6024807222066,6503948.651957862,1.4362737961364944,2062.442347966764,22364,1.6457151162450818,6.225844966046511,0.7822190512887893,7.229868735693906,312.571044921875,81.24465942382812,0.015819896012544632,2154,0.30258376122431957,1.3764128570280418,4.4366194973105495,0.6542319480317899,7.364986859677157,145.83724975585938,298.7607727050781,0.005555740557610989,2341,422,0,75,544,1161.8282159999999,7145.277130044843,26046,1,0.31259951999999996,0.31259951999999996,3.2340725067158833,0.6030226660560168,0.9308423232128326,0.4999999999126885,0.21519999999138817,11995.333333333334,3749.7354422399994,0.02102178404435858,2.0091308064328857,4.330622453959055,4.6998289991376465,0.9984229980184046,9225.446680580402,2883.8702041350266,106.9315574955579,,,3360,1050.3343871999998,0.135723096518505,1.016627086282467,1.113853676007683,1.1534545456614431,0.9995535715085713,343.4457861260189,107.36098788901616,-0.8181706502244679,-0.8181706502244679,67,2.090217685970149,140.04458495999998,1.931334118594369,0.6190305009624824,1.7508633011141637,0.35037447009802886,0.709947050813211,10245.952342453022,1434890.143318773,0.16154663994216725,1.725489484781297,2.3187880402805443,2.3296722487222796,0.98289863986998,5827.285278251074,816079.7482361896,64.55278714578222,3.2143431645201352,3.283582089552239,0.13163901592869584,4963.988340267321,695179.6868590162,0.08544716722150504,1.137769314316171,1.6455823394244145,1.6704233482012336,0.9983058724594133,1947.4341263933402,272727.60396769544,0.13163901592869584,"CurrentSlice","Yes",1555.1129999160767,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"C",8,4,"C - 8",1,1,,,,1193,0,46,44,137.64798864,0.6323418269213795,0.6528106118071391,1.1786940968069195,0.5711823466811805,5.081542321224967,0.9996902738535997,17.949537745579967,52.30147200017404,31205.839515518546,4295421.04313376,0.20404851542182625,6580.377016361936,3785.153529697716,28359.22249424195,37462532.91489361,1.6054574845276142,6367.505225633321,53357,391.76606116578347,446.918188342165,8.508820410919189,5.5546482582092285,129.92455474840236,17.885418081482744,1,17.885418081482744,1,31.826092303824442,3,27.863049897108198,2,0.5974536066345935,1.483595474300988,0.8234763538507118,7.125277481702527,109.46485137939453,1002.7860717773438,0.001209451467730105,1949,-0.20392803694749687,9735.833459500378,1340117.8934342398,0.2232777139283569,1446.3142898973244,6064.211325013708,5085.4406208911405,6717867.060197197,1.6054574845276142,2173.7946380244507,24461,1.6547123454463093,4.733735399745374,0.9449634707723199,7.02738241902936,241.20838928222656,110.72235107421875,0.011090129613876343,1718,-0.20392803694749687,0.6719552692828747,2.1605443738457746,0.862443919655756,7.090903586287414,167.9209442138672,107.5731201171875,0.012709144502878189,1518,1180,0,99,83,480.04866287999994,9134.160625135662,32446,1,1.7713972799999997,1.7713972799999997,0.5394791663323727,0.6353926212387836,2.5245284771103416,0.10590638693556942,0.8436419732719858,5497.588235294118,9738.412846559999,0.14940088680337668,1.2942546075327797,1.7721846987790701,1.9779754674185601,1.029230340703802,2395.4351475930284,4243.267304862688,11.41349349392738,,,4997.588235294118,8852.714206559998,0.06668616310218896,1.3957458775107516,1.755623674677845,1.7284653445842262,0.9807049430322553,2150.9712140175225,3810.224557868937,0.049546169698604065,0.049546169698604065,27,1.82928608,49.39072416,2.7015020970575545,0.760332780038759,1.5940393881258588,0.43802600964527666,0.6071365016890484,11629.826473931971,574405.5514026394,0.16258157551480407,1.4052599852440977,2.5008266779909345,2.4632538822465118,0.9736639322734588,6979.433635322734,344719.28147525113,12.670146273621206,3.233848577356804,3.7777777777777777,0.054499492917689595,6094.592195954326,301016.32201806875,0.09928911152800551,0.8873930953686923,2.1409947844761854,2.033938423130504,1.0069228107601045,3247.97517467773,160419.84593103558,0.054499492917689595,"CurrentSlice","Yes",1568.159999847412,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",7,2,"C - 7",1,1,,,,750,0,42,9,28.863355679999998,0.43166489400483726,0.22920518891086053,2.597156621495686,0.08737564415155485,3.454081252280555,5.127323789815714,13.238736000087016,28.98711393107649,17066.563176895306,492598.28320991993,0.23463561441102615,1046.8340816581874,3871.5766530090436,13826.898909147962,3830050.9978339854,1.4088614004397786,4004.4235368954246,25404,248.1854209386281,451.8652288808664,6.733407481384277,1.5433319337844849,-2.3683552659696683,76.13099565973603,3,65.08033958021512,1,76.13099565973603,3,72.31520245314246,2,0.15556318704271083,-1.0337432191543707,3.7143713589386023,5.603998815052034,29.261728286743164,299.5086364746094,0.0041418662294745445,405,-0.3822890621161414,9058.407942238267,261456.05033135996,0.09917090734581699,346.6743248774274,6429.5948057137975,3769.190502327703,1044065.7691447737,1.4088614004397786,898.330534740324,11579,0.553837271632988,-0.6903986548641923,4.131423581696621,5.527039740826174,39.26388931274414,86.53472137451172,0.012142355553805828,144,-0.3822890621161414,0.6292977965119328,-0.5225587854723335,4.2617524013085015,5.508247757537767,56.79268264770508,122.05487823486328,0.008366825059056282,164,647,0,189,103,677.8199592,7315.380322828593,20978,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27,1.2388203199999999,33.44814864,2.813449750598132,0.6851306678977624,1.330481567113985,0.46961357685268623,0.4622395347868987,9947.02837648516,332709.6836629734,0.1759859072437147,1.4221162603722466,1.8806238332023186,1.9383126119413288,0.9677328429878147,4657.810936574595,155795.15254356465,26.269494805002303,3.4674276692356236,4.444444444444445,0.21665908164331313,4435.591713780756,148362.33094889106,0.06611681167465451,0.9876306128781897,1.3691516611580812,1.4485363563613387,1.0015480597604438,1195.9274460334113,40001.55897758112,0.21665908164331313,"CurrentSlice","Yes",1068.75,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",7,3,"C - 7",1,1,,,,988,0,46,35,108.36783359999998,0.7344314662785792,0.681183235036845,1.1899222565596501,0.5602260297052619,4.530222851175605,3.104100272226774,16.563761007693873,43.06054179322947,29355.510576923076,3181193.0854430394,0.1444479312785425,6054.436254733447,3932.8804336864487,26319.86020636008,27372654.614614483,1.4027510888774213,4240.342774461912,48936,324.9081323076923,448.2981219230769,7.487743638610839,5.100525434875488,-36.58826880622492,35.07584632854433,2,35.07584632854433,2,35.07584632854433,2,35.07584632854433,2,0.04797354840387464,2.5125616521764007,1.044748520710059,6.891317756468645,110.20635223388672,859.51123046875,0.001296025700867176,1512,-0.07461210601895073,9537.100961538461,1033514.9700263998,0.18608937367089884,1165.4073836022326,6798.854791245046,4443.612728538851,4621357.237680405,1.4027510888774213,1774.7531445688194,30202,3.994623933020764,33.46074641844057,1.1612426035502958,6.810483323823158,227.32493591308594,105.28107452392578,0.010890946723520756,1231,-0.07461210601895073,1.0943017138830367,0.6163904880356337,1.0096153846153846,6.912318633107422,76.5287094116211,239.43772888183594,0.007640346419066191,1341,891,0,181,189,794.8363795199999,8650.752228631358,44638,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51,1.5732132705882351,80.23387679999999,2.1426801953700387,0.7532155630663778,1.505050200063809,0.42481402165643045,0.5692273412577809,13586.075582684454,1090063.5144965926,0.19184916785288259,1.4134792152000217,2.667342096652586,2.6093364698462067,0.9766194943823243,8492.587349684844,681393.2071278521,15.698492849701172,2.836793687832004,4.9411764705882355,0.12401877178179653,6140.099583325661,492643.99350828235,0.08117655968695428,0.8903003732962658,2.022663625187808,1.9590555740465347,0.9992321923704012,3104.4492127626654,249081.9956686567,0.12401877178179653,"CurrentSlice","Yes",1081.8669998645782,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",7,4,"C - 7",1,1,,,,1416,0,67,15,80.754876,0.4646833396095056,0.2465336593648685,2.300194143282148,0.11240598635888843,5.437217565760727,0.8090281387327022,21.3145795736158,46.73161158628491,24326.79741935484,1964507.5090771199,0.16769816220210962,3664.971267738256,3802.6784174204677,21479.566225134695,16646663.824479388,1.09388422582365,4079.5592194888295,30639,467.2607055483871,450.977840516129,10.554636708068847,2.6020732109069824,-0.9877435433523735,21.246718848413625,1,21.246718848413625,1,45.22022353803146,2,45.22022353803146,2,-1.0327679409520796,0.2857111568174697,1.3835587929240374,6.605004771706062,65.50054931640625,544.1102294921875,0.0021785618737339973,907,-0.6474308190841719,7222.71870967742,583269.7537828799,0.12982334325744063,728.7597802728319,6602.818231736551,2276.684923022086,1764430.8153421166,1.09388422582365,937.6774902983904,11251,1.3281114369150357,2.2546331108416284,2.0062434963579605,6.330655784530575,104.60273742675781,62.536529541015625,0.017685607075691223,438,-0.6474308190841719,-0.29696773685912814,-0.7511447578140875,1.3669094693028097,6.612834998271539,63.3731689453125,482.81341552734375,0.002363597508519888,820,1334,0,164,53,396.37619135999995,7587.63643533123,18423,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,2.3444963999999997,37.511942399999995,1.8808273196488439,0.6479829854098603,1.3029259723357443,0.5140840901826859,0.6561922161822803,10589.235654637152,397222.7979367751,0.15924474577038492,1.4444724005320286,2.140954977543316,2.0083269936328767,0.9683581398983505,5643.201867981818,211687.46342330636,9.2470760857409,2.8739476633870438,3.375,0.07913909181789845,5290.5102791077115,198457.31685649639,0.07436545911508534,0.8979554696013347,1.8581245842794232,1.7670174949166286,1.003142854499048,2443.279084887567,91652.14429942712,0.07913909181789845,"CurrentSlice","Yes",1095.0529999732971,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",8,1,"C - 8",1,1,,,,1289,0,76,13,74.29448591999999,0.3426790017568245,0.16840354570585217,3.607215434020884,0.04592192898729519,6.530920721250121,0.30038332394524697,24.212151904364053,52.196270896614735,22051.764375876577,1638324.4979347198,0.1914422477354459,3141.7797218839573,3693.9615101247614,19025.518993803857,13565195.04258215,1.269604141086691,4221.639338650244,28458,429.1759556802244,451.421086115007,12.881014677429198,2.1692085439682005,1.994784699336202,77.65377389104775,4,60.017931560076946,1,86.17099831887407,5,74.44022136696873,2,-0.6536168556017294,-0.48334602425327944,1.4576026468962506,6.544681941282504,61.34368133544922,463.97894287109375,0.0026196374092251062,902,-0.7116237754356666,6901.141654978962,512716.77151775995,0.09944400370232756,785.7700137408051,5435.664103199974,2830.2034865947503,2017935.085942057,1.269604141086691,686.2771562880148,9690,1.0129897644449362,0.9668421619135863,1.9178982196003296,6.3452358731423,98.6975326538086,55.543209075927734,0.01919582486152649,324,-0.7116237754356666,1.0045874758302062,1.2148732743567363,1.7408614608679915,6.409790554100125,116.80438995361328,238.62075805664062,0.004302565939724445,501,1220,0,186,35,336.46128336,6403.15174976773,13710,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,0.4688992799999999,0.9377985599999998,4.084863801381926,0.30007149677708417,0.9056121487831879,0.25,0.2532438577686178,10325.535714285714,9683.272524085713,0.0996544693655076,1.7473881574411563,2.5364020005206815,2.4514163706496697,0.975956330794396,6254.597545901503,5865.552571925962,8.463525945313892,1.8045068578423302,1,0.3980820874700118,6023.107142857143,5648.461205297142,0.11161137841505606,0.897849016635032,1.9902904035930584,2.0218038604739714,1.0009818980287004,2996.861760784423,2810.452643782696,0.3980820874700118,"CurrentSlice","Yes",1528.816999912262,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",8,2,"C - 8",1,1,,,,534,1,7,2,1.0419983999999998,0.7635949388533224,0.2645750075966164,2.016902547339691,0.13084112149532723,0.5783437441501151,36.13179092220292,1.9367999999999999,4.14101627586807,8097.9,8437.99884336,0.0868276958551224,20.910297909343313,3791.4466152397395,5089.012677711196,50890.12677711196,1.5987047321362902,703.1219982651957,9304,173.34359999999998,452.33964,1.1182119812965392,0.29585094344615936,0,76.44552220082092,3,52.480234373963555,1,80.12361936236984,3,71.82430803159463,2,0.8595244119249378,-1.0779727947676965,100,2.302585092994046,5.92307710647583,73.46154022216797,0.014002849347889423,13,0.12941565340559547,9188,9573.881299199998,0.009635117505933209,14.544051413648223,5747.152563764801,4620.766419927153,46207.66419927153,1.5987047321362902,88.52745964451432,9335,-0.1938227014957863,-0.7782908670346949,100,2.302585092994046,7.5333333015441895,91.13333129882812,0.011094650253653526,15,0.12941565340559547,-0.4566347765012358,-1.1068248207201683,100,2.302585092994046,9,169,0.005917159840464592,9,379,0,229,146,997.5050683199999,6320.35809046276,39427,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23,1.436145620869565,33.03134927999999,2.894115255550683,0.7361082924645228,1.7119866619900779,0.4398774090316602,0.538882305541728,8782.20155316,290087.96694978635,0.1397610010223236,1.389387444078697,1.9228711208196896,1.981761405763142,0.9814635792733665,4214.967973087152,139226.07932305534,20.547953624717113,3.013098428041737,3.3043478260869565,0.1962192294795799,3896.516536612439,128707.19869614136,0.05932724362930757,0.925714439697525,1.2950024774102984,1.3098539861172835,0.9992404063061298,887.629214323636,29319.590609455998,0.1962192294795799,"CurrentSlice","Yes",1542.0169999599457,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",8,3,"C - 8",1,1,,,,499,0,35,68,194.12430191999997,0.7743052635059897,0.524111864012837,1.2524360712753537,0.4014086619730378,6.220535931570837,4.089266003526163,21.7453184368498,56.12919062083368,27794.177670424047,5395525.33771152,0.1673573203996096,10978.67126961599,3733.4516300551804,24777.81695514045,46161072.98742666,1.518545357805283,4651.559097632832,51212,166.6689346215781,442.1964946859903,11.019756408691405,5.77558507232666,85.48671500527108,32.816455782585315,3,19.18180108495212,1,20.81332513875765,2,20.81332513875765,2,0.2941304518944402,1.526429576894607,0.6013076640940379,7.449381539607871,184.66860961914062,780.7857055664062,0.0014524440048262477,2921,-0.1282458973285966,8683.735909822866,1685724.1715519999,0.210751137768046,2182.059386130878,5718.456722539563,4244.90076033977,7908250.116512992,1.518545357805283,1830.1072230724071,24149,1.2029567699234396,6.249162134506561,0.7228945516108966,7.3103699702809255,446.1360168457031,84.72615051269531,0.014131031930446625,2757,-0.1282458973285966,0.6890359529922917,0.812002552681542,0.6214761051513368,7.425288856999389,215.42205810546875,164.95480346679688,0.008062034845352173,2412,484,0,107,316,1339.5931430399999,7598.005678282514,27232,2,0.10419983999999999,0.20839967999999998,12.566370614359172,1,3.1415925460576575,0,0.2282540689670175,5723,1192.6713686399999,0,2.061136050731907,2.0368707717915258,2.242298785255217,1,2913.297941696936,607.1303587943,51.76310262882221,1.7383311997430178,1,3371.5,702.61952112,0,1.1174575695363198,1.1177376707357796,1.1574023811599867,1,355.1392847164011,74.01091329032687,0,0,75,2.0812181375999996,156.09136031999998,1.7127504136873586,0.6559736584724576,1.6699723510737894,0.4131991662043499,0.7057817836469775,10947.075646655501,1708743.9292124007,0.1970367259264527,1.597786077913737,2.4662045960256695,2.489090080285405,0.9756865302276904,6508.240497172405,1015880.1124933539,26.782963944833096,3.328927266809468,4.053333333333334,0.1688631403197933,5268.308713561002,822337.473685446,0.09752662384963694,0.95914306659228,1.7465778170584862,1.772829684001713,1.0054699885922085,2251.9479982774033,351509.62642102083,0.1688631403197933,"CurrentSlice","Yes",1555.1129999160767,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"C",8,4,"C - 8",1,1,,,,156,17,31,63,155.67456095999998,0.7389249662542987,0.48583333225290853,1.361297956721189,0.33982005849708696,5.807583845687311,0.8585341389844361,20.179518693962944,51.45334179322947,29027.873493975905,4518901.46177712,0.1495841490659872,8632.640954709508,3785.153529697716,26149.534920419726,39067405.17110707,1.0858053133833525,4342.10975579151,45645,54.87427148594377,437.87193413654614,10.447454557800292,5.075721661376953,95.1431552939901,28.781179652675903,3,19.868678775882223,1,33.92483561437114,2,33.92483561437114,2,0.025686808550393785,0.8684611313711383,0.7401314315718922,7.238218343163279,164.3974609375,849.9025268554688,0.0013052060967311263,2370,-0.08180229975051359,6584.552878179385,1025047.3784284799,0.3069066591757715,1518.192959994654,6064.211325013708,2361.481225026977,3528052.9501903034,1.0858053133833525,2020.8431260082457,34166,4.9070423729372985,46.3318213937734,0.9058993672145074,7.082824881280184,446.22100830078125,54.84990692138672,0.023944132030010223,2172,-0.08180229975051359,0.6336695915200313,0.9024168335491849,0.7302749597228718,7.246114630380746,148.23681640625,354.39544677734375,0.0036527940537780523,2238,111,0,86,91,386.68560623999997,6521.867960118567,57273,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,1.9407220199999997,15.525776159999998,1.1171216202480991,0.7169697073613118,1.3446517027285356,0.5050843644941926,0.6369222908252387,16052.670988020409,249230.17653013088,0.2294209302649288,2.7600516386019955,3.8011836659312963,3.400033888751427,0.9406802106754557,11829.599334868002,183663.71133564546,11.866960770788321,3.4898126638747953,1.75,0.03466529176814882,7363.974078536917,114331.41319140642,0.1843179895442828,0.9682504907192458,2.558411350975554,2.4575671913234487,1.0065700504590853,4485.635504980736,69642.97278567948,0.03466529176814882,"CurrentSlice","Yes",1568.159999847412,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",3,1,"D - 3",1,1,,,,226,0,59,53,137.12698944,0.405022537779012,0.4041752247967446,1.6524060882981728,0.24936750391772855,6.00523410305853,3.8241410163153273,23.64386054771936,65.22691034505263,25543.535714285714,3502708.1521531194,0.14314481799566886,6393.476457514384,4543.046261253487,22260.217649281934,29294446.426455025,1.1764544967699297,3656.4247707872955,36224,84.3746708206687,444.4291267477203,11.135479440307616,4.500684906005859,49.16113483857307,78.11439232450701,5,58.8891784839838,1,66.599814594146,3,60.550604003725674,2,-0.43902684926724633,0.6090321409861725,0.8337875666337156,7.1149335411317125,145.21519470214844,645.26123046875,0.0017208841163665056,1803,-0.3093597537375152,8264.30775075988,1133259.64166736,0.15386694145034255,1443.307136898269,7024.75767099394,2300.5557099435528,3027531.3142857156,1.1764544967699297,1271.6037568137824,16423,0.9875731217746272,4.128415869782879,1.0266442475586885,6.958966313437172,398.8385009765625,75.11892700195312,0.014809775166213512,1833,-0.3093597537375152,1.0649453726544507,2.44104715881321,0.8626583272512264,7.0899097823222235,166.8136444091797,201.59776306152344,0.0058128368109464645,1524,142,0,230,285,1708.2521769599998,7593.868732463096,24382,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51,1.7468796705882352,89.09086319999999,1.7318522254773978,0.72374291347204,1.508993823782133,0.5175909932279705,0.6242297470077361,11237.586075585848,1001166.2437582435,0.18291795892334095,1.2771742939174404,1.884314773430391,1.9387548833643808,0.9709285524725407,5273.834034769522,469850.42653115554,20.886054016879648,3.092245457496144,3.803921568627451,0.03291702543395709,5973.664438909323,532198.9213295751,0.08883549292284026,0.905059960346376,1.8193986451027693,1.796281460851583,0.9999561353345181,2690.3463739055433,239685.28075823476,0.03291702543395709,"CurrentSlice","Yes",52.942999839782715,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",3,1,"D - 3",1,1,,,,416,0,68,54,214.13067119999997,0.6216038658766065,0.49563143386147124,1.3336611450438811,0.38015940571216367,6.7417442598929,1.0635147943822771,25.51958071755882,65.79418593125052,26193.871532846715,5608911.29265504,0.169132122156439,7934.10318806616,4543.046261253487,22829.455319638702,46914530.681857534,1.2485462422999665,4430.225079843501,37966,146.58528642335767,444.8485594160584,12.080969535827636,5.987708253479004,41.9212460073371,49.68760795723964,3,30.839916618489223,1,46.52597307097839,2,46.52597307097839,2,-0.4152837695160075,0.009474724926292755,0.5410813338779666,7.552972453341694,180.5526885986328,695.5240478515625,0.0016600588569417596,2866,-0.11799663007925547,8770.734793187348,1878083.3281823997,0.15087250658095605,2136.415791344181,7024.75767099394,2884.132084802485,5926891.434269107,1.2485462422999665,1323.2627428049784,17365,0.8296864083151072,2.551096283905257,0.7485155782880755,7.29979246971097,530.059326171875,85.17730712890625,0.01305649895220995,2679,-0.11799663007925547,1.1093264630746809,1.7540003766171672,0.5709177662931192,7.512572787325258,225.44088745117188,298.0650634765625,0.004052797332406044,2690,337,0,209,137,1306.1449943999999,8491.290147586757,35674,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,39,1.862238166153846,72.62728847999999,2.2726463448654455,0.6903667414537754,1.642750725600747,0.45823061012658245,0.6550460495233239,12811.182352662316,930441.4364966911,0.1432361339941439,1.3940854374643017,2.1763286886023576,2.2102382291742115,0.9850907934409523,6924.579644277453,502913.4434276743,19.92358577564671,3.1771469414517464,4.102564102564102,-0.042493226453167644,8434.406064044315,612568.0423708077,0.06735205631078958,1.1030359027271084,2.50694489906824,2.536226699888616,1.0089916937601517,5069.989850836301,368219.61548736016,-0.042493226453167644,"CurrentSlice","Yes",52.942999839782715,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",3,1,"D - 3",1,1,,,,587,0,74,38,170.15833872,0.5264194441154176,0.9034914716924949,1.5325091423288373,0.27639382843652904,6.442259845864395,3.4508698187323286,25.124542398220907,63.73318013810806,43264.32700551133,7361786.009096639,0.2063762806905609,8298.94063882173,4543.046261253487,39661.10308848876,64766581.34350214,1.462624629873344,8928.730893977621,59199,202.53594782608693,447.4450787507654,9.560860340881346,8.638155780029296,24.508717950517678,46.96327289890105,4,40.50939923370828,1,52.668328737460705,4,59.670250158854515,2,-1.0369036886088536,0.9610846048999933,0.6543695196552729,7.350634298590359,86.93317413330078,1849.543212890625,0.0007344128680415452,2454,0.1795806212720082,10274.583588487447,1748306.0744567998,0.15738193922399893,1702.729460046607,7024.75767099394,4590.812691599101,7496797.125381331,1.462624629873344,1617.0338898752282,24440,1.8792193773423633,9.840910030930806,0.8201181315106486,7.179742522191731,343.0668640136719,117.77963256835938,0.009505489841103554,1974,0.1795806212720082,0.8430172826153858,3.66214234043942,1.051116196901851,6.979681406526476,293.1300964355469,28.40970802307129,0.04175205156207085,1030,572,0,256,98,1268.5288521599998,9910.263265976671,54188,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,2.1631886784,54.07971695999999,2.1206417758916594,0.7461179337177313,1.67944398854528,0.4060585059110202,0.6962569130936943,18478.804821020065,999328.5344798485,0.16899555927338228,1.5953205669184485,3.251152299459594,3.188039926414731,0.9516315664166803,12795.03392413172,691951.8131106414,17.07099592450818,4.5568232905439885,3.84,-0.033255162637155306,10989.038633487646,594284.098961517,0.06984573395504046,1.0274820337855888,3.049779554796066,3.304404954744949,1.0076134407231678,7385.814716465071,399422.76938543364,-0.033255162637155306,"CurrentSlice","Yes",52.942999839782715,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",3,2,"D - 3",1,1,,,,300,0,51,24,76.48268255999999,0.5695834298305322,0.7718631393038,1.5519593944932717,0.31919439153554996,4.3464209570296575,8.23196979386148,16.850654705381626,41.07786041388912,28149.58446866485,2152955.7331128,0.22963429128998572,4313.2185012581285,4630.758328244824,24995.640311860116,18346799.988905326,1.5362743784699655,6464.109879569442,38523,106.66253133514985,450.00386975476835,6.8811951438903805,5.311340885925293,17.03898699038478,27.62363857472489,1,27.62363857472489,1,40.39713352110965,2,40.39713352110965,2,-0.7279499002928216,-0.20097195561638248,1.406944887852757,6.575844815626179,48.697696685791016,751.3225708007812,0.001818755641579628,1085,0.22500659987064375,10744.4931880109,821767.6617667199,0.11441994924237439,1130.8931696356988,6993.863426083922,4883.352840377764,3584380.9848372787,1.5362743784699655,1229.3843652072446,15654,0.47015494421749154,0.9835869373698225,1.6668027827068284,6.455644961355517,135.0552520751953,128.59254455566406,0.008366095833480358,724,0.22500659987064375,0.22135085467325377,-1.0877600680923591,1.54801060220211,6.507602244685457,89.48770904541016,58.576560974121094,0.02077683061361313,529,269,0,271,238,1978.6507617599998,7119.412133340355,20346,1,0.6251990399999999,0.6251990399999999,1.6170362533579417,0.5730493707150223,1.1926417797322924,0.39024390243934015,0.3444880839709681,8154.833333333333,5098.393971359999,0.0795746863920023,0.9085297597258253,3.084588650531797,3.689690253059937,1.0013837870392348,5511.098865877711,3445.533720291833,34.19048922350571,,,3860,2413.2682944,0.07879481613839345,1.12851355302176,1.2238644085285812,1.2373918449388495,0.9886642234224506,706.0558431952663,441.425435352071,0.850868494366554,0.850868494366554,38,1.6178396210526316,61.47790559999999,2.116724835662849,0.704741959932736,1.3649417067187994,0.5103363654471211,0.5597801207826156,9661.881505534986,593992.2391156657,0.19728860427971334,1.3793591676680506,1.6484644510238826,1.6843343754343365,0.9596058526774608,3800.74115790185,233661.6061155246,45.83411991458277,2.9896242955955965,3.473684210526316,0.13073517484168035,5412.502207522393,332749.2997738533,0.06572787525405867,1.1461545635301313,1.7161059100696978,1.680333967930718,0.9975983204715945,2258.5580507176596,138851.41863414028,0.13073517484168035,"CurrentSlice","Yes",66.09999990463257,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",3,3,"D - 3",1,1,,,,343,0,75,24,58.76870975999999,0.1927804542661772,0.32536710969635385,6.911059878281903,0.08339220907179146,8.03998928030005,4.334595715444145,24.509428340946673,61.89370924149333,22433.63475177305,1318395.7695888,0.1751836602286373,2021.8035499767718,4659.923602029048,19246.60807990936,10855086.95706888,1.2888178684951273,3930.00624804796,30137,124.0055659574468,450.862314893617,15.290933450317382,4.975166821289062,7.025766553001747,94.42108169088458,4,69.73582250514568,1,98.37814449405292,4,83.5162348085727,2,-0.6783456974256709,0.13175817131335776,1.8673607967406067,6.298184720617211,51.08296203613281,498.9896240234375,0.002368435263633728,675,-0.7295261753800032,9268.219858156028,544681.3228358399,0.11028943852434286,629.7905417542491,7191.256487604376,3246.119629858238,1830811.4712400462,1.2888178684951273,1022.186764276193,14389,0.550135843213805,1.5480947058845915,2.162869070972285,6.193697023133216,84.84444427490234,92.59722137451172,0.011671840213239193,360,-0.7295261753800032,-0.262511100614035,0.6189976077437978,2.0245460489914997,6.238265726272101,63.75,235.1328125,0.004498503170907497,384,247,0,458,105,1597.1751475199999,8335.64822546973,41620,1,123.37261055999998,123.37261055999998,0.4000457004346104,0.8519947222569254,1.7832550614239637,0.20340483930888498,5.917335497587497,16612.796452702703,2049564.0670718397,0.2129326700066537,3.3550112027596453,4.482379791249423,6.467692705871349,1.055191956433714,12906.551728608934,1592314.9800861648,79.52783146640617,,,4342.0160472972975,535685.85484848,0.1519236782098163,1.2301143412532316,1.362403423112302,1.3909979053299693,0.9891706446634685,1154.989375433608,142494.05441630815,0.604295393872236,0.604295393872236,76,1.5383186905263158,116.91222047999999,2.3284022666398174,0.6682450719086962,1.5616091367566387,0.42503284564866767,0.5714781263321255,11374.729940863972,1329844.934746746,0.15883097860637146,1.0972087775470252,1.8888310572139315,1.9215306957985105,0.9766272848353497,5352.629712566182,625787.8251033365,36.537430010276935,2.803258278777007,4.894736842105263,0.0996361607264266,5740.589294667511,671145.0413032956,0.05832893650708183,0.8008391211168734,1.801236665305523,1.7301098793117757,1.000044532732426,2553.562622803822,298542.67636672745,0.0996361607264266,"CurrentSlice","Yes",79.30999994277954,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",3,4,"D - 3",1,1,,,,696,0,37,21,57.830911199999996,0.727064041597726,0.677637168061265,1.1960446143509,0.5392952886930311,3.317903655913134,1.857994447999796,11.638719517197757,31.61539531041684,33611.209009009006,1943766.8435246397,0.1780346083560792,2316.490748335943,4504.011024664293,30598.18126087667,16981990.599786554,1.5440325745190306,5983.95843229324,45077,231.03581189189188,450.2158486486486,5.494188521575928,3.7230663505554196,9.116519204480234,21.215034901595065,2,11.166958374862556,1,11.166958374862556,1,11.166958374862556,1,-0.7715881990419821,0.00269817847144882,1.8667315964613262,6.295544875198968,34.965240478515625,1076.8155517578125,0.0011164969764649868,748,-0.33479146590822034,10639.10990990991,615269.4204470399,0.12178760407788403,555.5565951002616,6890.469855031403,4827.755587604681,2679404.3511205977,1.5440325745190306,1295.7117054492005,18092,1.613072114604875,3.7263094403546324,2.2108595081568057,6.16782512296962,91.89344024658203,131.0327911376953,0.008248557336628437,488,-0.33479146590822034,0.4801816122192759,-0.5545165420455618,1.9641262884506128,6.256522421804097,69.98844909667969,104.72517395019531,0.010758406482636929,433,691,0,72,56,177.76492703999998,10631.918522860493,33976,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,2.04926352,12.295581119999998,1.4181437303485833,0.5796878672218518,1.227211550593929,0.4616184847972396,0.5964036365297326,19794.451571739806,243384.28502623827,0.133151215264421,2.008122659912207,3.4061684202879245,3.4486946814639388,0.9655467012297722,13983.097249434577,171930.3065392717,7.665571831077251,3.2913462815065553,3.6666666666666665,0.09415416323286852,11424.119693432927,140466.19041519405,0.12824884191111255,1.2255131177316307,3.791574671197207,3.631265123919281,0.9959762844349758,8411.09194530059,103419.263321222,0.09415416323286852,"CurrentSlice","Yes",92.46999979019165,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",4,1,"D - 4",1,1,,,,782,0,61,17,66.1668984,0.43398743032819204,0.3263453543331246,2.047568513854602,0.16799277901684018,4.643545128318896,3.7449809906152827,19.370689813220384,43.771027862152984,31905.585826771654,2111093.65579248,0.21717027675426517,2646.0225690727775,4294.763294281825,28597.570430576226,18159457.223415904,1.7755379050500577,6928.94490400696,43622,262.69311496062994,450.9882009448819,8.829308486938476,2.881403806686401,3.486498462455081,53.850663332152195,2,53.850663332152195,2,87.71897628647305,4,76.15535167503567,3,-0.486654216363062,-0.34026309286087697,1.619443238886478,6.4339767323571335,39.42619705200195,982.6943969726562,0.0013156570494174957,962,0.2996288453431801,13393.867716535433,886230.68438304,0.13392314781539102,825.2671670868177,7543.554929714564,7315.451882403779,4645311.945326399,1.7755379050500577,1793.7489260213686,19354,0.3805914730558582,-0.17876236084642327,1.738483476966954,6.382940482830327,86.53900909423828,192.4964599609375,0.005598340183496475,564,0.2996288453431801,0.0814081119858425,-1.019854103858066,1.832723665447331,6.35262272999212,62.01333236694336,76.36000061035156,0.015396739356219769,375,766,0,170,90,596.64828384,10648.332343695425,25698,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11,2.7186685527272725,29.905354079999995,1.6755549942045895,0.538085253095722,1.4996633019152648,0.4076661131549365,0.7731865770877229,13667.029679916044,408717.36179975834,0.1497568938535373,1.6970116706285951,2.248452566073653,2.243951331275406,0.9920009332820515,7588.61384578439,226940.18403457268,25.536094089231728,3.5355039716024907,2.3636363636363638,0.00218041356687462,7933.658933490751,237258.87955599607,0.06249374051675748,1.3726125219608887,2.3983137873588216,2.463362004860771,1.0007266811522504,4625.643537295322,138331.50783068026,0.00218041356687462,"CurrentSlice","Yes",422.1529998779297,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",4,2,"D - 4",1,1,,,,24,1,5,5,1.8755971199999997,1.2127771900184563,0.5608141766733696,1.1592434500000532,0.460044372972498,0.5882570715446012,0.4537100264531136,1.8260325517361402,4.40843255173614,2726.722222222222,5114.23234704,0.0355037896944852,18.19162342475908,4230.17188292336,15.939097903792572,286.9037622682663,0.7099047233430257,96.80897233305711,2887,8.3928,451.9558666666666,1.0261583873748779,0.5754841711521148,-41.24188742733163,75.41703744525645,1,75.41703744525645,1,75.41703744525645,1,75.41703744525645,1,0.1768252785614315,-1.1596499364086146,55.55555555555555,2.8903717578961645,10,9,0.1111111119389534,10,-0.2297023676939059,5268.722222222223,9882.00022608,0.024640810692951348,17.900045838164317,7421.731464767812,0,0,0.7099047233430257,129.82558687152374,5595,1.0915543481862722,1.1587709761340577,55.55555555555555,2.8903717578961645,8.666666984558105,34.16666793823242,0.029814815148711205,12,-0.2297023676939059,-0.012376581819827277,-1.2929774523169921,55.55555555555555,2.8903717578961645,10,4,0.25,10,24,0,6,6,2.604996,5276.96,5595,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",435.3269999027252,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",4,3,"D - 4",1,1,,,,1190,0,89,19,120.87181439999999,0.39030770191951497,0.23992840965585815,2.667642693781212,0.08768465173973472,7.163684130642307,3.1360797822648023,28.40823403170285,62.38266041388912,20791.638793103448,2513123.1052718395,0.15297311780584277,4956.823882098211,4129.982576526852,17721.13111030585,20556512.087954786,1.1714593781681637,3180.561810473944,28405,399.9592179310344,450.65634931034475,13.93234348297119,3.342765014648437,3.092817936830683,30.632065429868984,3,21.71039990180309,1,21.71039990180309,1,21.71039990180309,1,-1.0928376844323935,0.6859630187738808,0.9765160523186682,6.968776199245302,109.42062377929688,406.9484558105469,0.002860503038391471,1222,-0.5952979981615288,8979.637068965518,1085385.0251793598,0.094487471769458,1205.5580918487376,7665.342252846334,3026.0312759595126,3510196.280113035,1.1714593781681637,848.4632040538579,12679,0.3378070339413695,1.728322595101651,1.3956599286563616,6.692393204222577,161.0027313232422,90.09945678710938,0.012012558057904243,734,-0.5952979981615288,0.11301631097441192,-0.5762130982076012,1.0211058263971462,6.933509617619082,160.4689483642578,270.0428161621094,0.003857323667034507,934,980,0,684,89,3049.5125174399996,8653.746463472971,29547,3,0.9377985599999998,2.8133956799999997,2.0006896866218735,0.05312288955303839,2.012024079475823,0.015009812950653845,0.5166621026985895,9059.550505050505,25488.100253650908,0.13455312602748734,1.1061206282361744,1.619609632929602,3.9463587596571204,0.9996398097060372,3465.8874884485977,9750.912887367334,83.73955717986419,3.039281299234485,2,3470.989898989899,9765.267987141817,0.09518023173652768,0.7265689108387979,1.1304286644309627,1.1310307088063827,1.0072872321558728,400.4822161923007,1126.714936952245,0.2687633581267978,0.2687633581267978,191,1.5291735681675391,292.07215152,2.6524556372054477,0.7001446990157302,1.5473069828269619,0.4416943598567183,0.555680429236139,10641.728690845137,3108152.594627252,0.152779863784173,1.2161211435921637,1.787442612231146,1.6907975979204892,0.9743196118544246,4688.122897839132,1369270.1413620522,53.49849672276688,3.041561290923506,3.9581151832460733,0.06360385589003248,4687.313989811102,1369033.881853924,0.06292019441339712,0.9014048060679359,1.52655992885854,1.4920008215696017,0.9995845136807434,1616.806307013504,472224.0966805398,0.06360385589003248,"CurrentSlice","Yes",448.4599997997284,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",4,4,"D - 4",1,1,,,,286,0,70,18,103.05364175999999,0.5019300410365357,0.28974032954845996,2.127175555533927,0.12958755693151325,5.906679698765028,0.5632205933630109,22.357250109975507,50.794303448350874,25633.70576339737,2641646.7307224,0.18895325707293065,4231.866200600586,4050.187710194172,22375.726002587802,22129593.016559336,1.2331297449823437,4843.572194843087,32477,104.62408210313447,450.53545237613747,11.346574415588378,3.2875602104187007,3.462436491283025,42.34264605969603,3,27.902612609868786,1,42.34264605969603,3,37.70939609771296,2,-0.8366865902025904,-0.35209364303489377,1.0949565544549194,6.8400967354765445,74,599.87939453125,0.0020330864936113358,1202,-0.5161468261654203,9104.377148634985,938239.2211233599,0.09624686374652275,1003.7087375692549,7383.14616582811,3146.5160630784076,3111904.386384545,1.2331297449823437,876.2677469216267,14404,1.2184619709428663,3.833571825635577,1.4630091778011105,6.620906292458988,173.36363220214844,94.43496704101562,0.011285450309515,715,-0.5161468261654203,-0.24916927807834133,-0.8161213394771791,1.1726565527168928,6.788576924265377,137.64064025878906,215.09690856933594,0.00485316663980484,743,238,0,162,50,532.9821816,8996.755034213098,28579,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,2.094416784,20.94416784,1.3541742983945741,0.6912722354646265,1.448919442985323,0.4073394252752168,0.6702947693695137,13197.494869999278,276410.54762480385,0.14788905647610984,1.3284745795098325,2.215139742347044,2.128650828949785,0.9865116853093155,7239.633784442701,151628.1050815023,8.87985024741929,3.248247091113238,3.2,0.1608849176975388,6380.331212023271,133630.727779406,0.06718485392339121,0.7747407079597558,1.958370425983812,2.0691289245325333,1.006882470064705,3122.3514512137035,65395.05284968737,0.1608849176975388,"CurrentSlice","Yes",461.74000000953674,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",3,2,"D - 3",1,1,,,,490,1,11,3,2.8133956799999997,0.7234072895439189,0.2943448079087304,1.8444467569480185,0.1462526024965024,0.9087795185486112,4.316247253673448,3.2279999999999998,6.99083255173614,22284.666666666668,62695.584930239995,0.049455133237359804,55.801002286446725,4630.758328244824,18920.65381319623,510857.6529562982,1.604470056220082,1102.0911591501508,24279,159.786,452.2428,1.7430232131958006,0.513049832868576,2.5141940250273325,22.754194719742614,2,10.207100763078772,1,31.68886461528659,2,31.68886461528659,2,0.14631859268866143,-1.0171842094354886,37.03703703703704,3.2958368660043296,9,491.270263671875,0.0020572515204548836,37,-0.5889280126576067,11221.444444444445,31570.363323359998,0.02890347821921027,30.601394897788808,6993.863426083922,5345.395601256784,144325.68123393317,1.604470056220082,324.33877508807814,12021,0.38279726853535195,-0.24908281783323805,37.03703703703704,3.2958368660043296,16.636363983154297,131.4545440673828,0.007664454635232687,33,-0.5889280126576067,-0.9122954607874627,0.5008165368449276,37.03703703703704,3.2958368660043296,9.235294342041016,347.941162109375,0.0028817313723266125,17,438,0,123,47,232.05304367999997,9916.83430624158,26084,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,1.3545979199999998,4.063793759999999,1.3794474688860003,0.8688832563041267,2.294796533567042,0.6051546674144693,0.7006227123230675,15820.56794871795,64291.525309656,0.20876567967681572,1.6745984762636528,2.6923819680395216,2.75796452478278,0.9634074084178326,9944.51910553029,40412.47468725476,19.148299011396073,3.6564460337297557,2,-0.017637248099672608,9214.83141025641,37447.174384452,0.0629372811793504,0.7127641210446636,2.7392378720402504,2.860782986081527,1.0090160311422838,5850.818556785974,23776.519941959043,-0.017637248099672608,"CurrentSlice","Yes",66.09999990463257,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",3,3,"D - 3",1,1,,,,1245,0,53,19,70.75169136,0.5379532034408099,0.44313922625753294,1.7956814381020674,0.2115940552209694,4.496691839123372,0.8524340649417607,16.788703559238872,40.65379531041684,27405.346097201767,1938974.5886831998,0.23840037891826438,2965.789836461446,4659.923602029048,24510.547663610992,16642661.863591865,1.266165117399125,6533.444893959079,36737,411.6812447717231,450.6492424153166,8.221955282592774,3.643470902252197,7.892224401000977,41.334222127141686,2,19.4962564965266,1,92.87854224253869,2,92.87854224253869,2,-0.7374451750986871,-0.44900140254785237,1.524810157881837,6.496121079939495,45.37525177001953,702.552734375,0.001979560125619173,986,-0.03248680491711763,9105.318114874815,644216.6569982399,0.09422111274690306,771.6101205029681,7191.256487604376,3308.235660833697,2246292.01370608,1.266165117399125,857.9132046980388,13914,1.8308390088049373,5.058686055487856,2.2969757570367926,6.187709070028781,96.5439453125,97.45130920410156,0.01096316333860159,421,-0.03248680491711763,0.3033169724078009,-1.4160448425882255,1.6853164902904514,6.4231213760709736,69.52458953857422,122.74180603027344,0.00959167443215847,488,1230,0,70,56,211.94247455999997,8377.296951819075,20952,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,1.0419983999999998,5.209992,2.1416508720946785,0.7808839781170769,1.1406075938990998,0.5498899206560727,0.3796596446418651,10564.289999999999,55039.86638567999,0.19461196572316622,1.6244747581715813,1.8223459962408648,1.7846232499455175,0.9862465637167113,4767.2075459588805,24837.113176785395,10.180334998748593,5.149614974426622,3.6,-0.025135919958388153,5123.8099999999995,26695.009109519993,0.05609411818427691,1.0094820729562735,1.7700057940283966,1.5442237452783854,0.991924930413672,2229.011566409224,11613.132428899526,-0.025135919958388153,"CurrentSlice","Yes",79.30999994277954,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",3,4,"D - 3",1,1,,,,1412,0,46,53,170.67933791999997,0.7864384263765071,0.7004782718185982,1.159114817652111,0.5073408692564814,5.6113038677623335,4.237983583070697,19.76211021930603,52.22314758637193,32635.970695970696,5570285.870764799,0.14427230740329916,11274.375166630049,4504.011024664293,29703.465957019223,48654277.23759749,1.152549302760143,4708.466796654147,54600,462.89756483516476,444.9039282051282,9.192800811767578,6.43935722579956,123.48305890880151,77.03625622270312,2,51.85342603259794,1,81.84766175853746,2,81.84766175853746,2,-0.0024068461240456768,1.8313378917464984,0.6917516075025232,7.315639579099656,176.11605834960938,1062.101806640625,0.0010388002265244722,2516,-0.3994290964710282,7941.606227106227,1355468.0928638398,0.15748091597189692,1823.0680636829302,6890.469855031403,2377.895844740543,3894993.3936850093,1.152549302760143,1250.651422932809,15990,0.7894458402326529,3.2506264277487595,0.8639440873873109,7.147345682644683,478.917236328125,68.9783935546875,0.016200663521885872,2175,-0.3994290964710282,1.3878943473212093,3.553414223825695,0.7051692033377016,7.298488915264036,165.00892639160156,161.5584716796875,0.009221181273460388,2018,1302,0,362,310,2984.2834175999997,7181.525244413408,32582,2,234.60593975999998,469.21187951999997,6.462498987795329,0.9559195876538638,2.400870410842818,0.1434250347339645,5.680724097505996,10006.270102176812,4695060.801627164,0.26459726342156387,3.0604916979024286,5.190936449163183,4.640970333960852,1.0149177926358282,8078.627527436777,3790588.00609062,42.26276453663444,41.036278741751495,1,3416.553976010662,1603087.7125654917,0.08858499315801122,0.65036132303273,1.1650634117073115,1.1126974556995632,0.9982847236053527,484.0492370591892,227121.65230076417,0.20785273543478952,0.20785273543478952,121,1.8954037011570246,229.34384783999997,1.8223416335321054,0.6872685299816494,1.4884140334023077,0.4701868958226378,0.6311956054879863,11841.549518536402,2715786.5309690377,0.19048882389043847,1.1854864170140462,2.12835476772272,2.063097767415385,0.9716064481284311,6277.839136170717,1439783.783609934,22.12429190657775,3.1272666980592625,5.1735537190082646,0.013616745181711423,6608.108628490334,1515529.059802678,0.06914491839849272,0.8301228186725084,2.253400835373615,2.1004501914927265,0.998757125237503,3675.603889538861,842977.1391625126,0.013616745181711423,"CurrentSlice","Yes",92.46999979019165,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",4,1,"D - 4",1,1,,,,900,0,66,44,172.03393583999997,0.618873393823174,0.6081816358807804,1.417952867679135,0.3156343846553328,6.23086018038401,2.355675009080812,23.863196047470254,59.103212689844206,29318.92186553604,5043849.523113599,0.16404226605069072,7817.08022528082,4294.763294281825,25878.49775839318,42725399.79910714,1.1949468476749352,4809.542380985677,41941,302.1795125378558,446.5915515445185,10.64782417602539,6.475811125946044,33.05838332235527,62.97716357626589,3,39.730418064456224,1,62.97716357626589,3,59.92409922386215,2,-0.9779071484703277,0.7708562808728949,0.6944747617305886,7.311718365206219,159.25282287597656,853.8032836914062,0.0013581316452473402,2389,-0.2586365539513934,9014.147183525136,1550739.2182228798,0.12741304311824164,1640.7917528376443,7543.554929714564,2859.821011650136,4721564.490234374,1.1949468476749352,1148.5199237686645,14704,0.14858128632674292,1.264137327710885,0.891847937542029,7.119231759248654,443.2787780761719,87.4278793334961,0.012440076097846031,2059,-0.2586365539513934,1.1703602015357,3.38654383976841,0.7370310598609363,7.268989919165215,217.26498413085938,348.3930969238281,0.003391666803508997,2053,881,0,157,123,1125.1498723199998,9061.654195221337,41258,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,64,1.7355785849999998,111.07702943999999,1.8869332238709589,0.722108215695189,1.5594656697661866,0.47714800657574435,0.6175394850973699,13262.539349238674,1473163.4737445423,0.19315870681863712,1.016719430555601,2.1549945483630517,2.1775391965783304,0.973155850818287,7108.213177363674,789559.2043678206,19.01714715095852,2.8080212941265557,4.78125,0.009024434968900236,6626.115751714855,736009.2544260785,0.06758357310641377,0.7228295958033089,1.9259589938223036,2.057376289984028,1.0019317176250058,3185.6916445719976,353857.16459088575,0.009024434968900236,"CurrentSlice","Yes",422.1529998779297,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",4,2,"D - 4",1,1,,,,788,14,58,53,216.73566719999997,0.8126959472503046,0.5878284385340752,1.1572779320545472,0.5053767351374194,6.3182102689126785,1.2748125506346604,22.030952197306405,57.89033710364632,26410.765865384616,5724154.961097119,0.17264575044898187,11033.939491505773,4230.17188292336,23278.132666665773,48418515.94666481,1.236511751555811,4559.706492761681,54932,263.4260613461538,439.74159403846147,10.894025917053222,6.403818244171142,42.38934168941067,81.51193125666556,6,67.05140992619394,1,72.55392872522175,3,67.05140992619394,1,1.4715814830233798,7.5193770909178035,0.5630547337278106,7.528215380997536,242.1800537109375,713.5322265625,0.0015945469494909048,3149,-0.14290408537451746,9177.058173076923,1988995.8260750398,0.20355840450865534,2358.463260165711,7421.731464767812,3006.1411698740258,6252773.633337974,1.236511751555811,1868.0673197946537,27667,2.618159371284294,18.903843769503144,0.6855584319526628,7.3756676692865115,585.0460205078125,93.83015441894531,0.012387274764478207,3303,-0.14290408537451746,0.0856396661153678,-0.8803806241284349,0.5399408284023668,7.556472454736746,208.1444091796875,246.23887634277344,0.005830767098814249,3303,637,0,255,144,1745.2431201599998,8228.08507970625,49313,2,2.0318968799999997,4.063793759999999,1.759805818531984,0.1923423371064094,1.7043138237609252,0.1291005890653832,0.6450937420379489,9826.317567567567,39932.12801485945,0.13172356221764991,3.425404411843976,5.128154948227207,5.028403338024558,1.00466439083766,7910.1668921741675,32145.28685697597,41.04169272446798,53.94376684580767,1,3778.0810810810813,15353.342322071348,0.034191527252994264,1.170725552347949,1.206040044083747,1.2617507658579625,0.9987323995568396,645.4478823622399,2622.9670767488838,-0.06674029639205337,-0.06674029639205337,55,2.1540948741818178,118.47521807999999,1.755482882018007,0.6400099142047232,1.6273857683186463,0.42884940850750936,0.7040692396965627,12350.566747813562,1463236.088858808,0.21858212224951032,1.4702504069408258,2.0014151448485267,2.0585100784874037,0.9612751903736726,6179.649744610665,732135.3511507647,15.449790861100597,3.4139994468763066,3.963636363636364,0.08891805655518559,6297.209955292794,746063.3227488607,0.09825407006319518,1.0241987492166233,2.0101970310051542,2.080246807802621,1.001365088798798,3164.5767565739525,374923.92136599805,0.08891805655518559,"CurrentSlice","Yes",435.3269999027252,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",4,3,"D - 4",1,1,,,,24,1,8,6,4.063793759999999,1.1038279369855124,0.9441859652377909,1.0725659241138668,0.6207036209673125,0.8328904463501174,0.04734314322080177,2.6024968011507714,6.801740689670175,2788.6923076923076,11332.670398559998,0.03240181310170647,39.199495404577405,4129.982576526852,33.197772173181875,1294.713114754093,0.7985292499792972,90.35868695201268,3037,8.806646153846152,451.76273846153845,1.2112034282684325,1.1436012780189513,-24.67485645357071,11.029773230815394,1,11.029773230815394,1,88.98055720075602,2,11.029773230815394,1,0.5663190383234807,0.5987371703805411,26.95595003287311,3.6280156368701615,14,9,0.1111111119389534,14,0.16900004257675838,6121,24874.481604959998,0.01873270587073206,39.316611881609376,7665.342252846334,4.336293260473212,169.11543715845528,0.7985292499792972,114.66289263475095,6360,-0.07906469518846361,-0.49720109561428716,26.95595003287311,3.6280156368701615,22.045454025268555,42.20454406738281,0.02426046133041382,44,0.16900004257675838,0.016686965264435152,-0.7405929295791158,32.21564760026298,3.4858315998322245,14,4,0.25,14,23,0,10,8,6.5645899199999995,6102.222222222223,6360,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",448.4599997997284,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",4,4,"D - 4",1,1,,,,422,0,93,12,57.622511519999996,0.17649648429875014,0.1242430822709288,6.9213654046038355,0.017747107639799475,7.967132759971936,0.8916318777335441,29.699354296011215,64.05204413802105,12155.925858951176,700454.97784368,0.3765612184968783,1134.145517361681,4050.187710194172,9025.684819819311,4991203.705360079,1.5707403272916305,4577.450253404367,26163,152.12577504520794,451.70869150090414,15.812684513854979,1.9646166629791257,2.3018877681723504,50.83505631639522,3,46.02800301267545,1,46.7720912991163,2,46.7720912991163,2,1.3972762821986788,0.7289930319128675,1.9718190112128815,6.254247128447034,41.417179107666016,225.78936767578125,0.006821718066930771,489,-0.48480208085525717,11597.005424954792,668248.5786969599,0.15906833245695023,729.929725134,7383.14616582811,5493.206345704545,3037743.1091746134,1.5707403272916305,1844.7163144417643,16070,-0.0023738600644504395,-0.6408806122514217,2.0372193100922473,6.234192237146927,49.501407623291016,144.2732391357422,0.007771719712764025,355,-0.48480208085525717,-0.2684062555790146,-1.0820185247010656,2.0502993698681204,6.224164791496873,57.87678909301758,176.6704864501953,0.006078116130083799,349,397,0,159,31,315.72551519999996,9299.010891089109,16237,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",461.74000000953674,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",3,2,"D - 3",1,1,,,,485,8,54,43,163.90634831999998,0.7799639050007557,0.7248301910258078,1.1815450476763145,0.4909331628209491,5.5517908653045565,2.136604288003908,19.542067792329448,51.38845572430596,30450.008900190718,4990949.765141759,0.10898037704021787,7262.813364739147,4630.758328244824,27120.91664926821,42661201.88929889,1.3675924201429444,3318.4534508207744,39737,165.60666064844244,443.8580033057851,8.990243639373778,6.516400014495849,31.91937858775825,18.401652336567278,2,18.401652336567278,2,18.401652336567278,2,18.401652336567278,2,-0.7665110587700795,0.982682537137801,0.736765401852381,7.256063276887627,207.4680633544922,912.1433715820312,0.0011660609161481261,2239,-0.25840371248908955,9564.754609027335,1567724.0005425597,0.28036076520547404,1852.8587843328662,6993.863426083922,3705.5599595808408,5828845.816420662,1.3675924201429444,2681.5819211894886,30864,2.2312677260450027,8.678133263786584,0.7917297982604576,7.197897079917561,340.5980529785156,105.75518035888672,0.01213094312697649,2463,-0.25840371248908955,0.7390970111852594,0.21752744459949724,0.6850342052330146,7.3075288987283615,140.8581085205078,413.3399353027344,0.003088455880060792,2368,484,7,81,121,456.8120985599999,8638.435218978102,41966,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,1.84086384,22.09036608,4.104733012059013,0.9329858612489154,1.8603884193033482,0.453524955571775,0.5992855549354046,15884.544425019427,350895.40136270225,0.2216708558701398,1.4688692640229675,2.7110456940562653,2.769117402013991,0.9279443126449795,10025.349775572933,221463.64662245192,11.662629158118557,2.8166588840164177,3.1666666666666665,-0.045062131569771964,8980.382652532653,198379.9403329277,0.07056424812142127,0.8801459268221968,2.697546951438231,2.787997387805952,1.0077391659559478,5651.290401610144,124839.07379595829,-0.045062131569771964,"CurrentSlice","Yes",66.09999990463257,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",3,3,"D - 3",1,1,,,,733,11,60,57,216.214668,0.7579363048239709,0.470852790855543,1.318440050077057,0.35647648427841183,6.735701562345709,1.0472768801929142,24.01987747845521,59.873018482986666,28086.698795180724,6072756.255216,0.14331499244438786,8193.72234965723,4659.923602029048,24849.0782549525,51561837.379026435,1.1716729862686777,4025.2450256191228,44579,245.70773725301203,440.8789954698795,12.188048249816894,5.7387765335083,-42.970663244447614,58.839921975801154,2,41.30796918589534,1,109.89325049791714,3,103.78439858722305,2,-0.11015985608235455,1.4302016533517135,0.5683263173174626,7.519273972845364,248.94146728515625,790.435546875,0.0013984570978209376,3212,-0.00980041816294856,8425.800963855421,1821781.7580340798,0.16836133817395252,1902.381039872807,7191.256487604376,2415.1564455829957,5011449.624584716,1.1716729862686777,1418.5791254620776,15986,0.9823876427969261,2.1943950896251607,0.702569313398171,7.354067761245551,632.0523681640625,78.99517822265625,0.014143017120659351,3111,-0.00980041816294856,0.9910710077518091,1.0770401576101118,0.5404557991000145,7.555200334047118,199.878662109375,331.02130126953125,0.004163731355220079,3239,697,0,137,153,845.16490224,8994.754777462706,22216,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30,2.2854498239999996,68.56349472,2.0715902629668905,0.7325090051504414,1.5585232360751748,0.43452310497933355,0.6903557344351396,12709.438599400093,871403.5263041324,0.14355513751367488,1.4410516864060068,2.1144884813539147,2.1470027439841584,0.9715399720446568,6698.794081127668,459292.73261176405,16.31267339005239,3.142172392150889,4,0.17423026839447492,7623.424269413207,522688.60964423226,0.08220026690441722,1.0942059036773124,2.3546379739967365,2.297562317330151,1.0021725438499245,4385.803729184982,300706.03082893085,0.17423026839447492,"CurrentSlice","Yes",79.30999994277954,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",3,4,"D - 3",1,1,,,,708,33,31,18,28.75915584,0.5589876184095337,0.7917613791864829,1.8807545998587734,0.16342195788976155,2.934027492920245,4.319323670876399,11.130750637760238,25.426811586284913,12941.014492753624,372172.6525248,0.11818851818165516,535.8605749953294,4504.011024664293,9919.95922617365,2737908.7464239276,1.6517610061060175,1529.4793266658746,16550,233.90719565217387,439.42436521739126,4.60055817489624,3.642544285583496,26.477696558304824,15.637998915984502,2,15.637998915984502,2,39.48062024780289,3,15.637998915984502,2,-0.06502968312286203,-0.8234094986777469,3.938248267170762,5.56325417689076,58.45400619506836,172.6290740966797,0.00614720256999135,337,0.4952342241037002,11381.409420289856,327319.72719695995,0.1983670635533718,346.6702403923981,6890.469855031403,5475.785233033679,1511316.7243172955,1.6517610061060175,2257.6967658015824,19052,1.0660618550768703,1.4359964144679669,3.938248267170762,5.56325417689076,63.5417594909668,140.52821350097656,0.00820129830390215,443,0.4952342241037002,0.6031722136294952,-0.08112915659215192,3.6756983826927114,5.610355254404686,33.83684158325195,141.06053161621094,0.01041390560567379,380,641,0,112,56,226.73885183999997,9355.543198529413,32829,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2.1881966399999997,8.752786559999999,1.3065027705384205,0.7568660624748891,1.302250900161765,0.44448472824737617,0.6538023756447054,16103.29069767442,140948.66639037768,0.14381978156360048,1.5716836955121258,2.726772003613762,2.8056009928774346,0.9462392107881707,10197.666510418243,89257.99837575089,5.725466668877108,2.550903256680998,1,-0.07355996734061077,10287.259598308669,90042.1875513071,0.07221569619397528,1.1118079911307908,3.4051874893220666,3.2699033275636835,1.0078611423038208,7266.204331728694,63599.53561696869,-0.07355996734061077,"CurrentSlice","Yes",92.46999979019165,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",4,1,"D - 4",1,1,,,,1333,0,48,16,55.121715359999996,0.555885765337111,0.41247035535941307,1.667651162223097,0.23832648727409356,3.8249348429397574,4.265779432508552,15.175033653998925,35.299903448350875,24226.395085066164,1335400.45407792,0.201851011337132,2383.054265184727,4294.763294281825,20727.978466990364,10965100.609037902,1.6146333827819828,4890.122348973529,33330,436.997975047259,450.9033935727788,7.068758981323242,2.9156535289764403,-5.338067906679927,58.026889185028956,3,35.25986426851023,1,44.78778553320713,2,44.78778553320713,2,-0.08683561102453483,-1.0432020056652604,1.9403875772313566,6.252644272070323,43.537635803222656,562.3629150390625,0.002101752208545804,744,-0.4296559264614442,12180.07561436673,671386.6610784,0.240238485961973,709.5894059770316,7543.554929714564,6149.027436524164,3252835.5139212827,1.6146333827819828,2926.1229244978113,22517,1.1773382826845886,0.6547151010938639,2.133354297619005,6.186782629162628,48.91891860961914,187.8220672607422,0.0066332509741187096,444,-0.4296559264614442,1.302289465674424,2.8407480641159477,2.304880271296915,6.125519834362018,77.7725830078125,115.69782257080078,0.009182271547615528,321,1207,0,210,126,988.2312825599998,9253.166912695066,27654,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,1.9142999177142854,67.00049711999999,2.9298674817937638,0.783649655499227,1.5309499359540162,0.5035400145389243,0.5818478081018876,13628.609915610268,913123.6394004492,0.13456958316332868,1.3364026618952543,2.259741509888835,2.2376432977611502,0.9720954408921638,7597.561737767703,509040.41333032714,13.17207763435042,3.931646022155909,4.857142857142857,0.15507912381574904,5693.531465854289,381469.4385805997,0.05475148033160429,0.9063355262931664,1.6274595302448125,1.7678134646372692,1.0047461200135082,2195.1148477784877,147073.78603665179,0.15507912381574904,"CurrentSlice","Yes",422.1529998779297,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",4,2,"D - 4",1,1,,,,1260,43,41,61,191.51930591999997,0.8204761332064263,0.8931086211013093,1.1609362314375438,0.5011364097138316,5.948679061153316,0.9195672318778518,20.140754134838147,54.15994758637193,33457.563112078344,6407769.264999839,0.189139270258415,9728.834348309916,4230.17188292336,30249.807751454562,55599146.64717349,1.5276038721467422,6328.1390716433625,49946,413.52120130576714,429.878801523395,8.875932389831542,7.927171737670898,70.7646628585726,38.05281474132044,2,34.87987061843578,1,38.05281474132044,2,38.05281474132044,2,-0.49987726560636786,-0.041703012221899094,0.5902474776836724,7.457602530245691,143.1203155517578,1123.5496826171875,0.0010670119663700461,2909,0.11765224270010828,11337.465723612622,2171343.5662780795,0.27158215287475596,2187.195881824821,7421.731464767812,5385.301006263694,9898183.24951267,1.5276038721467422,3079.053349362469,24617,0.8762745786350936,1.0754808731321033,0.6411615028399369,7.397902961874961,281.0055236816406,146.91294860839844,0.008962135761976242,2895,0.11765224270010828,1.0651141481631794,0.16138926469549597,0.6080081841335322,7.435914424479159,151.96771240234375,183.68832397460938,0.015064416453242302,2509,1226,0,103,194,1351.992924,9783.797533718689,47680,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,85,1.881726522352941,159.94675439999997,2.3434216339349985,0.6566565625140809,1.6140370833243354,0.3964422294197127,0.6311404605770533,13059.530604816962,2088829.5342279421,0.15077779997489998,1.176461722239324,2.1940808470491433,2.1766754448810683,0.9842713623915287,7107.365887468034,1136800.1060337876,16.89662155860009,3.014327075135251,4.705882352941177,0.11962873129978052,7493.170046205886,1198508.2290579295,0.09031211933379811,0.8512501297045946,2.3359543368509126,2.4753252916143644,1.002514236203638,4285.4146855821045,685438.170216954,0.11962873129978052,"CurrentSlice","Yes",435.3269999027252,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",4,3,"D - 4",1,1,,,,1,24,7,9,5.105792159999999,1.078024168905294,0.897052736022495,1.0272148074165195,0.7909933021878036,0.9136339975336947,0.18255969642100286,2.6618769918987613,7.714756965538245,2826.081632653061,14429.38544352,0.02658592757461149,49.206695343183085,4129.982576526852,0,0,0.8004887721594958,75.13400160565408,3042,1.218734693877551,443.7577714285714,1.3601879962921142,1.2201603635787963,75.29559845002966,11.029773230815394,1,11.029773230815394,1,125.88030618930402,3,88.96306858384717,2,0.5338564030918321,0.5661022175466979,21.241149521032902,3.863528576455119,16,9,0.1111111119389534,16,0.006678061371244415,6136.0204081632655,31329.244893599996,0.02041496316274148,49.31700263305564,7665.342252846334,0,0,0.8004887721594958,125.26663059848302,6537,0.4904830256835656,1.3354204261863263,22.074135776759682,3.8352368547996107,32.14285659790039,41.57143020629883,0.024619370698928833,63,0.006678061371244415,0.5369977328890897,-0.6795667709810531,25.406080799666807,3.7396831562868713,16,4,0.25,16,0,24,8,10,7.085589119999999,6125,6537,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",448.4599997997284,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",4,4,"D - 4",1,1,,,,582,0,69,9,46.99412784,0.2763250691309236,0.12760458518633755,4.487131516305653,0.028268933556261477,5.793169734426986,1.816288723012222,21.952773401099,46.229222069010525,18609.975609756097,874559.5729041599,0.1874207462585847,1674.370005050383,4050.187710194172,15556.376860748021,7015925.964197358,1.5672787228738232,3487.8955166345477,26173,198.15339246119734,451.89709623059866,11.49311530151367,1.4665742105484008,-1.2630006176288964,56.9488328113411,2,46.02800301267545,1,56.9488328113411,2,56.9488328113411,2,-0.08903316146084686,-0.7263302957139404,2.295957247014518,6.0868767521657405,46.66062545776367,346.9159851074219,0.0033792138565331697,607,-0.174305101893531,11571.447893569844,543790.10160432,0.0526845972177347,584.3230420703959,7383.14616582811,5289.429128690976,2385532.53703963,1.5672787228738232,609.6370714987319,13097,0.29996833580153237,-0.6067864855132297,2.6696033942802644,5.973898718268079,92.5658950805664,140.48837280273438,0.007230651099234819,258,-0.174305101893531,0.2772567504642928,-0.6155072891269944,2.3844523871564056,6.059212341411685,42.410789489746094,128.1618194580078,0.008425536565482616,241,499,0,252,137,1021.3668316799999,9052.708324831667,28230,3,280.26283631999996,840.78850896,0.6537475721607079,0.4603723649265077,2.025483019820239,0.16603146475067945,6.56158526488827,11119.422160361972,9349082.378707523,0.1666620476589487,4.160665853520595,5.012683270188912,4.450720935064956,0.9916213959239809,8901.164680083766,7483996.979375045,23.561941822479415,20.752953549761433,2,4736.575837246023,3982458.5357740466,0.21417055952768624,1.4593037112537528,1.5511454603472843,1.570765471368267,0.9722962605519466,1682.9770882379476,1415027.796633426,0.2907272151955082,0.2907272151955082,33,1.414591767272727,46.68152832,1.6787397419919252,0.7121690790735747,1.1976279041891993,0.5477011728804501,0.5027238028389311,12322.018402221967,575210.6510028859,0.2052129466918124,1.378237098395452,1.961474306812193,1.9874434462444108,0.95534538978644,6039.999637343099,281956.41412342153,17.146474482911092,3.041896466207572,3.9393939393939394,0.08016937758116763,5039.5610230853545,235254.4106195271,0.06920417693351916,0.9904102632390442,1.6503677913551655,1.6343197764032693,1.0010495097360366,1985.9622740772788,92707.75413979008,0.08016937758116763,"CurrentSlice","Yes",461.74000000953674,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",5,1,"D - 5",1,1,,,,21,0,46,55,210.69207647999997,0.7611375646591804,0.9709241264389672,1.0591263430578093,0.7054016053350005,5.959475878697578,7.025595197526465,19.880392177218233,58.97900689670175,26515.742828882296,5586656.916026879,0.11869482835265398,9900.003031207703,4530.83082555216,23420.588600026575,47356430.14925373,1.2553360629267434,3147.2815437173,33407,13.504438575667656,444.5921845697329,8.551373357391357,8.302734706878661,111.06332352612985,41.135711467908536,1,41.135711467908536,1,41.135711467908536,1,41.135711467908536,1,-0.8179359921841599,0.8279849386317402,0.5928847954400701,7.480438110102293,250.646240234375,698.6072998046875,0.0015413434011861682,2595,-0.14215999213661637,9088.416913946587,1914857.4315153598,0.1374062421184594,2296.7752668828457,7239.827789825036,3591.738371176566,7262494.986519016,1.2553360629267434,1248.8052149512462,16753,0.14850453690259757,1.7173867591520269,0.7479544985378443,7.299974968503304,571.5472412109375,88.12732696533203,0.012443630024790764,2741,-0.14215999213661637,-0.6978414457727701,0.07662103357328753,0.6016900151743287,7.4755139102669546,218.66415405273438,290.60076904296875,0.004632981494069099,2382,0,0,108,429,2605.72539888,8089.037749430159,43130,1,0.20839967999999998,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,2139,445.76691551999994,0.012561971802285557,1.1152241918665275,1.0907633202079439,1.0774322593821375,1,177.98796340876265,37.092634618237845,70.63577206114316,,,2927.5,610.0900631999999,0.00797080231568098,0.9398073836276083,0.9458333199384047,0.9473197639050372,1,0,0,-1,-1,87,1.8336776441379308,159.52995503999998,2.1180899252295866,0.6954968881302649,1.5303454780758277,0.4675546113283803,0.6158692033202765,12034.19047777384,1919813.8658620564,0.16808974164712256,1.2152718691016668,2.1893567877646483,2.1941519225304345,0.9685955824535549,6537.511935003819,1042928.9850646226,36.01162187364622,3.1143647833778068,4.551724137931035,0.02862655220140594,5687.999409534187,907406.2900705353,0.0653954730047769,0.8764040348219865,1.8377111410170472,1.8112794937136216,1.0000079728828037,2592.8451806784656,413636.4750993162,0.02862655220140594,"CurrentSlice","Yes",580.5699999332428,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",5,2,"D - 5",1,1,,,,21,1,17,4,6.147790559999999,0.5831440168153553,0.2357893701980767,2.235929218583761,0.10528851050499843,1.4791036582281742,0.9887576755828964,5.174877668119315,11.51003255173614,29295.271186440677,180101.19165263997,0.06931301099778575,53.893525951668444,4367.206056969879,,,1.3764357860637266,2030.5434539288785,31990,9.246305084745762,452.1333762711864,2.879251346969604,0.6788968617439269,-0.14935344105781187,9.25034282431959,1,9.25034282431959,1,9.25034282431959,1,9.25034282431959,1,-0.9396009862331165,0.06321470973115462,16.949152542372882,4.07753744390572,13.296296119689941,835.7283935546875,0.0012212967267259955,81,-0.8899677988166512,9816.118644067798,60347.44153583999,0.03656387876666096,60.00776656746752,7131.548557117599,,,1.3764357860637266,358.9153720608553,10837,0.5579329102199343,0.04501049742797436,18.098247629991384,4.030544414715215,16.935483932495117,100.93548583984375,0.010022742673754692,31,-0.8899677988166512,1.0343876429322758,-0.14900453160615257,17.52370008618213,4.054040929310467,9.6875,50.65625,0.02162523753941059,32,20,0,18,18,25.633160639999996,9690.80487804878,11699,1,0.6251990399999999,0.6251990399999999,0.7539822368615503,0,3.0543263920399593,0,0.5512859512086281,10243,6403.913766719999,0.07352457380015184,1.208535369297638,,5.1975319439762036,0.9867895845246166,10243,6403.913766719999,3.30290794630661,,,21531.166666666668,13461.264730079998,0.0762051524448078,0.8280186521017316,,7.0335133486381975,1.001999316605269,21531.166666666668,13461.264730079998,-0.6600916302066728,-0.6600916302066728,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",593.7400000095367,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",5,3,"D - 5",1,1,,,,1288,0,26,7,13.650179039999998,0.544779546373484,0.3080037667545307,1.900295880576727,0.1686479684330464,2.0318416616647847,5.072182567674227,8.07,17.74449765520842,16244.160305343512,221735.6965224,0.23749376993896695,421.4776131192345,4559.602459705541,13264.13942851679,1737602.2651356994,1.3058986877113306,3857.8868704089514,23985,419.7508854961831,452.07277557251905,3.883346714401245,1.196085415649414,-1.5107723273727427,51.64315193770174,5,32.0433962328483,1,42.04915933633962,3,42.573116594894834,2,0.22673092523148472,-1.0482694799012129,7.633587786259541,4.875197323201151,16.67889976501465,276.3119201660156,0.004492171574383974,218,-0.6148222892673681,9597.496183206107,131007.54123647998,0.07308476703385242,162.99927934675708,7349.342084129299,4165.870400325105,545729.0224425888,1.3058986877113306,701.4307726579061,11575,0.5734583148756268,-0.46521157397366464,7.866674436221666,4.85403252379474,30.3125,101.36458587646484,0.010153747163712978,96,-0.6148222892673681,0.9760706734327447,0.27991004026800415,7.750131111240604,4.864614923497945,25.525253295898438,261.5050354003906,0.0038983747363090515,99,1274,0,96,64,327.1874976,7791.964968152866,15904,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,3.0681063999999996,27.612957599999998,2.544558684818888,0.7767752455533415,2.213914107947128,0.414094554735876,0.9420454118848329,10882.03970105261,300485.3008666824,0.13832217514581563,1.3513083375788655,2.0034590260893563,1.9099522377330118,0.9883530670460627,5450.413918171608,150502.04842492245,12.551700100588322,4.049684943501501,4,0.13451189960768475,5478.506637471056,151277.7714918068,0.07280796410430995,1.0459176405538413,1.8384121668653703,1.7016825047514235,1.000184732031439,2498.4857606443334,68990.58137287572,0.13451189960768475,"CurrentSlice","Yes",606.8899998664856,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",5,4,"D - 5",1,1,,,,0,0,68,15,84.50607023999999,0.4190920180755046,0.2247077170243346,2.5388534605671733,0.08965776554376259,5.843497293254796,0.956608916770303,21.7453184368498,50.33779531041684,25223.975339087545,2131579.0317369597,0.1311843062108324,2239.6268372840073,4403.214574802628,,,1.1080658571062318,3308.9897047373456,30685,9.844802959309494,450.98503427866825,11.402659043884276,2.5622654817581174,-1.7094911893263052,17.658250274834973,1,17.658250274834973,1,17.658250274834973,1,17.658250274834973,1,-0.8174621444002456,-0.18487257297644755,1.3516369402831898,6.633731201280684,78.4715347290039,595.7841186523438,0.0018394029466435313,931,-0.3195536301117719,8351.22071516646,705728.8443455999,0.07785852842598383,765.1300505598391,7536.754843232948,,,1.1080658571062318,650.2137554434529,10994,0.7289968763018826,3.7563389301360672,2.078388860930395,6.308840409894158,214.01254272460938,75.80877685546875,0.013757860288023949,638,-0.3195536301117719,0.6210782108637778,-0.43736408270568594,1.418534606618916,6.598479742045478,72.6895980834961,140.7583770751953,0.008118047378957272,567,0,0,105,17,147.44277359999998,8564.930035335688,14201,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",620.079999923706,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",6,1,"D - 6",1,1,,,,1011,0,65,21,97.63525007999999,0.5285579913736894,0.37310462297731095,1.7853101154088118,0.20425159481750266,5.267083460847193,1.4394267742634825,20.669285038433234,48.17946041388912,23903.281750266808,2333802.8914199998,0.18746139331027478,5514.12148610647,3032.8135718152294,21638.22087654993,20275012.961327285,1.482691605789503,4480.942501593079,31243,335.42433938100316,450.3425173959444,9.86803653717041,3.6818100517272945,-4.565744661230299,63.86605917678065,4,54.49601187608297,1,83.74157311499951,3,54.49601187608297,1,-0.8523988664958038,-0.2834493269540683,1.1811350970250658,6.77239242504891,82.3595199584961,532.4500122070312,0.002301517641171813,1171,-0.5951249272735114,9905.441835645677,967120.2907761598,0.10695280073656316,1070.118549957196,6680.716203536629,4171.62588911906,3908813.458104559,1.482691605789503,1059.4147468554286,13936,0.4766945598770849,0.9363430359716278,1.3975436490354443,6.641050373679821,190.2532958984375,103.81993103027344,0.010272402316331863,833,-0.5951249272735114,0.34909279594961684,-0.7046757964813746,1.2449186702491775,6.731887413422441,126.55490112304688,161.63690185546875,0.00654361117631197,683,930,0,222,110,1094.20251984,8783.192267403105,28154,4,201.10569119999997,804.4227647999999,1.0234625678469638,0.5119485460047488,1.4720059242713253,0.3678035832756833,4.1687844985360565,8334.207255313402,6704226.042735425,0.2320936741705721,4.085867060295227,4.838126945630146,4.029069272913507,1.025032546010022,6611.596966461648,5318519.111504371,21.702941427583443,13.164569401479797,3,3874.765651576538,3116949.698393272,0.32470902003324453,1.6129801581979426,1.710667336378557,1.7114507897534523,0.9125949325214774,1609.7047778596602,1294883.1679176376,0.02515926778931318,0.02515926778931318,50,1.6276015007999998,81.38007504,2.135170628613547,0.6532809073289727,1.3339221085876247,0.48455029187877047,0.5623035625139172,12784.909330693148,1040436.8807114045,0.15526415411674802,1.3785409209724455,2.2297383539905713,2.2862908011259093,0.9832848656620876,7051.093384166531,573818.5087175198,15.07565783442129,2.9065677980197053,4.2,0.18561515530152195,4371.455057173053,355749.3405867305,0.06680918197501211,0.9710166986094069,1.9299503637620405,1.893887210475953,0.9994670382932088,2106.3941834561756,171418.51671348308,0.18561515530152195,"CurrentSlice","Yes",949.816999912262,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",6,2,"D - 6",1,1,,,,338,0,65,24,101.69904383999999,0.5205437205454901,0.46327639462833925,1.7062691484631929,0.25092823182119117,5.255236496388618,6.558569491696362,20.66172172109575,49.54898482769122,17343.935450819674,1763861.6517710397,0.18581360089630863,3637.359299537714,3820.1322408124593,14342.801054232921,13998573.828931332,1.4297287542582935,3222.7390998299456,22794,120.7678807377049,450.10755737704915,9.536632855224608,4.418096886062622,7.5803559289989195,82.01462448751626,4,59.34029425054204,1,82.01462448751626,4,59.34029425054204,1,-0.5485839677823683,-0.7403769090448153,1.1358673743617307,6.811719332038161,85.69503784179688,286.8520812988281,0.0041343411430716515,987,-0.07912137751143852,9885.71106557377,1005367.3630473599,0.09562021067491112,1019.1130933947964,6914.396200069588,4086.030447938663,3987965.7171881353,1.4297287542582935,945.2737747614641,14594,0.1593999826302073,1.9171012110900074,1.3563222252082772,6.6751467799844315,193.63914489746094,103.54127502441406,0.010291604325175285,848,-0.07912137751143852,0.7704975953506221,0.5294089394908847,1.2240493147003493,6.755600296897163,123.40669250488281,318.2303771972656,0.0032854173332452774,777,295,0,384,158,1246.7510856,9501.614709569578,35200,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54,2.3753704266666666,128.27000303999998,2.0766702542724347,0.7255448416491532,1.6724781869990304,0.41355811437466544,0.7397156557762321,14104.613762214882,1809198.8501573286,0.13477336142563415,1.661369109063352,2.4319638773429935,2.540142629805971,0.9805799597934727,8304.933144579774,1065273.7997022443,42.20615637427139,3.5230810301620092,4.111111111111111,0.15331945930713212,4986.468131616675,639614.282401334,0.07269061574620884,1.1147185227626168,1.6615277667297672,1.717465508934341,0.9986106606278277,1985.333735029922,254658.76422770263,0.15331945930713212,"CurrentSlice","Yes",962.9799997806549,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",6,3,"D - 6",1,1,,,,70,0,24,4,6.8771894399999995,0.3254050116757162,0.13983884186677342,3.8046908057092046,0.03684324318968912,2.040681633731218,2.0546121708950054,7.431414078087695,16.29664882760421,7822.636363636364,53797.75219296,0.11211192335003246,163.68139200676111,3851.9553223285293,5340.629348827322,352481.53702260327,1.4476920663523012,877.0108083951767,10021,26.171254545454545,452.3308363636363,4.042016427612304,0.5652308960437774,-0.8038125460351462,66.96207155935646,2,57.84716254975867,1,66.96207155935646,2,57.84716254975867,1,0.7047923275932535,-0.08060878012863659,15.610651974288338,4.168650282009457,21.71232795715332,66.60273742675781,0.015782782807946205,73,0.15815172605956157,10152.287878787878,69819.20699184,0.01816346392030724,104.29302030212847,7012.739873865746,4842.283981671744,319590.7427903351,1.4476920663523012,184.40071459493615,10546,-0.8123842406968876,1.3659939981799116,15.151515151515152,4.189654742026425,36.69013977050781,108.57746124267578,0.009291118942201138,71,0.15815172605956157,-0.20425392877170112,-0.26426413567833507,17.90633608815427,4.063627981924617,27.705883026123047,152.8235321044922,0.006581873167306185,51,0,0,204,47,556.8439449599999,6470.733345808383,11874,1,8.335987199999998,8.335987199999998,0.4822673717263464,0.22918485165444086,2.6831165385807516,0.08380612255482234,1.8867238891793359,12004.375,100068.31634399999,0.07775807344063089,1.1173594938034357,6.546178505366454,6.167501612001956,1.0260005523431426,10170.576091192517,84781.79211280684,25.569763589686925,,,2790.8625,23264.59407696,0.03890766143955678,1.0311782681989978,1.124437797052206,0.9746789641497581,0.9938865165538937,308.8554851909589,2574.6153712016226,0.26924264706633055,0.26924264706633055,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",976.146999835968,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",5,1,"D - 5",1,1,,,,293,0,51,22,81.7968744,0.6493391655204555,0.5040435928788867,1.3937364080484897,0.36569758837210165,4.259599241297652,3.6770868139182493,16.152906839327713,39.786660413889116,22621.272611464967,1850349.3945681597,0.19150371234797825,3181.422871512781,4530.83082555216,19230.808044535832,15096184.314960629,1.1828301546397384,4332.0576831311855,29637,102.04509859872611,450.1332917197452,7.607243325805664,3.8343822578430173,-5.079370432391748,43.619722397957304,2,32.023963536265555,1,54.65436647095899,3,54.37380907661395,2,-0.4941701560192054,-0.9511365367580908,1.3387967057487118,6.630364116225214,63.06342315673828,491.47674560546875,0.0024331663735210896,946,-0.48577777460505983,8563.486624203822,700466.43982608,0.1455511579257819,797.6480049936099,7239.827789825036,3357.970876172326,2636007.137795276,1.1828301546397384,1246.4253940348115,17525,1.5571876509678846,5.235395821395624,1.582214288612114,6.510242946004947,140.00579833984375,84.12029266357422,0.013331416994333267,690,-0.48577777460505983,0.7455412845052959,2.511292463697556,1.7152825672441072,6.456129596810413,165.24156188964844,203.85435485839844,0.005005444400012493,563,235,0,242,91,1239.04029744,8436.662854259524,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,77,1.655018237922078,127.43640431999998,1.9418970618206357,0.7465876473901185,1.424545672030739,0.518915599744121,0.5790607059500124,11850.569367967302,1510193.9493984878,0.2295165728825791,1.1248540556924034,2.2765408734857218,2.160672926843662,0.9514675701608026,6645.053619935806,846821.7398382188,24.060694760831705,2.9518243096322188,5.298701298701299,0.07653960754584987,5706.2903313885145,727189.1218381334,0.06498683409851641,0.6831999050334194,1.6830408396088643,1.8171040322359584,0.9998899667542119,2315.8257644593805,295120.5084543186,0.07653960754584987,"CurrentSlice","Yes",580.5699999332428,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",5,2,"D - 5",1,1,,,,10,16,36,30,69.39709343999999,0.5117567137397131,0.8234649998613593,1.345088815278083,0.7014250456939384,3.8543948526712577,3.1850911919088394,12.359488882635882,41.280390620833685,33032.843843843846,2292383.3508201595,0.12688536028165986,3268.573761681928,4367.206056969879,30300.27930929216,20179986.019988578,1.4699590138275798,4191.384292253936,43348,8.394738738738738,442.9223135135135,5.950834451293945,4.900303890609741,-12.505820800580082,9.25034282431959,1,9.25034282431959,1,33.72213463185535,2,33.72213463185535,2,0.15840375566779294,-0.6257236687301564,1.573645717789862,6.4692811666956995,66.92986297607422,1091.4879150390625,0.00097941467538476,998,-0.016182499730895892,10483.084084084085,727495.5657225599,0.14625775655869283,849.2119335579787,7131.548557117599,5072.787396477003,3378476.406053684,1.4699590138275798,1533.2323599542774,18729,0.6685167135030022,1.522228818827414,1.6818620422224027,6.41932461314183,181.54563903808594,117.27281951904297,0.009328873828053474,986,-0.016182499730895892,0.9577864992870485,0.22719175509132628,1.6863710557404252,6.421130685650758,89.88778686523438,47.26237487792969,0.030880479142069817,606,0,0,107,170,1087.74212976,8365.719034390268,25650,2,152.39226599999998,304.78453199999996,0.10628006096781423,0.38956533726763876,5.243865404566099,0.33890668618488684,8.400493586516724,11110.2465626011,3386231.2989869844,0.29292230774292266,2.39360352382072,6.144888228868492,5.637592640297865,1.049125192782175,9302.199589442906,2835166.5484389476,8.013730639164779,13.861381992984583,1,11138.206104640714,3394752.934922463,0.6111847580642843,1.921971198909874,4.0760999287682305,3.6384800939819297,0.7904087627009193,8405.64157008903,2561909.53209933,0.46187368873970197,0.46187368873970197,15,1.187878176,17.818172639999997,1.624634440210334,0.7821852289531631,1.1452634487420972,0.6772591346351206,0.45289629888619315,16029.09110052165,285609.11249138234,0.11487531807723632,1.891229457325256,2.962700943413725,2.8191108663537197,0.9696765529263401,10618.794412914569,189207.51207797922,11.16529919438314,2.9035978904440998,4,0.12072666328927983,8125.255277316759,144777.20127530108,0.08530597424412481,1.3188219501885432,2.9734907170819374,2.602484292504082,0.994883199520606,5392.690742765075,96087.89464871792,0.12072666328927983,"CurrentSlice","Yes",593.7400000095367,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",5,3,"D - 5",1,1,,,,1445,0,37,33,89.29926287999999,0.7678803965579603,0.8966618346203016,1.080455535854339,0.8577227216988468,3.9186589157618243,2.4891584027925258,12.855385884523264,38.22804413802105,26371.667444574097,2354970.4637169596,0.1696071532362385,4354.690252135082,4559.602459705541,23501.476272903077,20140765.16587794,1.170218180598673,4472.823441367002,33583,472.7366450408401,448.54849148191363,5.832794570159912,5.23004428024292,55.09886281925737,64.84868391915712,3,49.297412877235786,1,51.20012491708858,2,51.20012491708858,2,-0.8002419373290621,0.08473410592158004,1.2431087795068139,6.710158864132615,75.57447052001953,671.4840698242188,0.0017397563206031919,1128,-0.3505334478200232,8600.333722287049,768003.46192224,0.12614876525697813,885.3689413368028,7349.342084129299,3147.5800506160303,2697476.103377938,1.170218180598673,1084.9214798644618,19384,1.7576581315498436,12.02982418213879,1.4772979471685577,6.581328755833218,229.52928161621094,81.94561004638672,0.013184071518480778,956,-0.3505334478200232,2.197138219013757,8.901649106924287,1.3384183244854306,6.651528298118722,114.64679718017578,213.86312866210938,0.005340759642422199,906,1383,0,160,165,810.4663555199999,8355.125482129082,45107,1,2.0839967999999995,2.0839967999999995,1.347530211131618,0.7883342713488867,1.016305215735879,0.7443032640687395,0.5805914935728549,8884.6,18515.477969279997,0.307392969335157,2.5329927091475213,2.940710101758504,3.4568131064426497,0.9716452912266649,5863.356935378591,12219.217090586788,52.18245689351959,,,3311.95,6902.093201759999,0.07861369218016685,1.0804481775262447,1.1539126845240035,1.0657281946843913,1.0193490233122275,441.7588283289815,920.6239846093467,0.15143833130382742,0.15143833130382742,52,1.7533626923076921,91.17486,2.4613676492933516,0.686480022016673,1.5158811094460058,0.4422247724558173,0.5825832029008042,11670.986937772172,1064100.6001132063,0.14336055368205156,1.2505641049052374,2.14038404089425,2.0484236623575742,0.9716296807281116,6218.233266101153,566946.5474841152,14.729495353367744,3.1012979734037236,5.1923076923076925,0.11117701914940208,5836.4026261593635,532133.1923437122,0.07187845149550834,0.8825339526815248,2.0334543161323375,1.8128488102380478,0.9983534935843282,2966.211454488345,270443.9140933712,0.11117701914940208,"CurrentSlice","Yes",606.8899998664856,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",5,4,"D - 5",1,1,,,,639,0,54,58,189.95630831999998,0.7177640832411804,0.4735467506598452,1.3528868442309943,0.3386696345770531,6.39539907325492,0.578525183216047,22.86645571836615,57.66880220711859,31694.2786615469,6020528.169412799,0.1456771030750328,8230.633789726062,4403.214574802628,28614.409029171245,52164067.66017918,1.524157486272132,4617.13069946698,48842,214.59790038398242,443.86930071311025,11.559532475280761,5.473979042816162,130.8349696705749,22.41539062363419,3,25.59066793476693,2,25.59066793476693,2,25.59066793476693,2,-0.5001978007181183,0.6619453669869375,0.626179352089426,7.412508252738077,191.0973663330078,996.1558837890625,0.0011165539035573602,2855,-0.09613966518110605,11487.201316511246,2182066.3550131195,0.16544391738925138,2116.4261199852863,7536.754843232948,5546.19637366293,10110715.98918752,1.524157486272132,1900.4875856425863,21764,0.9426647708878372,2.0276588348121853,0.7020069334092413,7.324367331205851,406.7484130859375,144.27487182617188,0.0077314432710409164,2663,-0.09613966518110605,0.43009020596000685,0.8956015620614397,0.6225685148837206,7.418964616444134,182.0177459716797,264.99395751953125,0.005145406350493431,2480,632,0,112,90,504.32722559999996,10494.451446280991,35292,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,1.4522852699999997,23.236564319999996,2.40680147800675,0.6961353238139055,1.4332013802882924,0.38081017435214154,0.5247139856171816,14469.988977179659,336232.8295779261,0.13188719640024862,1.4098338976331206,2.435613017726638,2.451408938074024,0.9853754734232516,8528.984034331343,198184.2860979933,9.502641820228098,5.165100103774076,4.125,0.26106255641778864,8544.379906866901,198542.03328042832,0.11471215142440992,0.9045891023882066,2.7742667472181917,2.7569363458247476,1.0051785217068323,5464.510274491245,126976.44447051665,0.26106255641778864,"CurrentSlice","Yes",620.079999923706,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",6,1,"D - 6",1,1,,,,1379,0,32,15,35.219545919999995,0.725267450091967,0.5132549561059396,1.3250548925064145,0.4165049936609173,2.7253286576063505,9.778059581539761,10.012005097881243,24.702887172482807,17452.292899408283,614661.83118,0.22617323610291643,1678.6559827897338,3032.8135718152294,15198.778824064731,5137187.242533879,1.5518045318232818,3947.2415624751216,24653,450.24678816568047,451.0862591715976,4.851686376571655,2.4901520782470703,0.8060004926362228,63.164466953623354,4,49.53870237249436,1,71.16715465318467,4,49.53870237249436,1,-0.26901728553483073,-0.9274595547672901,3.0286054409859595,5.806640045055564,32.70240783691406,292.3128967285156,0.004311019089072943,457,-0.0953738799072632,10367.165680473372,365126.8677436799,0.16892527303310484,455.2674558397299,6680.716203536629,4641.0149933681005,1568663.067758418,1.5518045318232818,1751.2762931533985,19472,1.1039248460056443,2.3179369127053704,3.2736948986380026,5.749219568559474,31.96521759033203,133.66957092285156,0.008540994487702847,230,-0.0953738799072632,1.2894997111263238,0.6175164623247333,3.2386821189734256,5.759975884948809,40.17757034301758,174.84579467773438,0.006107007153332233,214,1234,0,236,311,1353.6601214399998,7766.276422138403,25162,5,205.66964419199996,1028.34822096,4.180523346266934,0.5359009113229891,1.94014709116689,0.16237736075490963,4.6551055433458215,10117.166804489476,10403970.48455232,0.130480293672027,2.064063664435286,4.447304323489078,4.891018983829701,0.9766094226730189,7842.268108878698,8064582.458056752,53.88332861947786,10.515463197346518,1.6,3333.1490430866847,3427637.888652718,0.1666528874084286,0.7728146666151756,1.4790895160388735,1.4722233742924955,0.9910292796587019,1079.6349677431322,1110240.698364857,-0.006047287874064111,-0.006047287874064111,33,1.9166455418181816,63.249302879999995,2.7973934440361834,0.6786709894550029,1.9052985834143044,0.3605910483693627,0.6898258690331223,11734.17785079213,742178.5689325387,0.15040624153800283,1.7942440330247333,2.0492261716437787,2.098391328801621,0.9888373566643536,6008.027163686858,380003.5297872974,41.49655243988033,3.8686797781346005,2.8484848484848486,0.26567111456811027,4020.8677645531593,254317.0830806513,0.0703516819019091,1.4054725954778025,1.7842656536059889,1.7419989304949648,0.9981942029360723,1767.3536892096067,111783.8887849038,0.26567111456811027,"CurrentSlice","Yes",949.816999912262,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",6,2,"D - 6",1,1,,,,676,0,56,18,65.85429887999999,0.4789614595889107,0.3979590762413593,1.8781893528086835,0.1946292647222302,4.436819935704163,5.869329470416727,17.756934302970205,41.56681158628491,16515.386075949365,1087609.1707641596,0.21373991866748787,2420.9574872680723,3820.1322408124593,13405.845143123452,8472494.13045402,1.3069775265332675,3529.997276635579,23230,228.29774620253164,450.8285069620253,8.245605249023438,3.28141344795227,6.390895336307466,103.61900276695006,5,79.69875345219694,1,103.61900276695006,5,91.48628258638176,2,-0.07447978780876718,-0.9559151408039512,1.6874298990546388,6.404191395149766,56.36989974975586,267.3066101074219,0.00453387014567852,711,-0.7149205092203644,9036.960443037975,595122.69398256,0.09310066196477211,765.2494527858403,6914.396200069588,3257.948362322867,2059023.364988052,1.3069775265332675,841.3469993962957,12617,0.6225147991422735,0.8872518973008439,2.0429418362441916,6.2583019552006345,120.47916412353516,90.82499694824219,0.01166387926787138,480,-0.7149205092203644,-0.1938648568960624,-0.6871118891823382,1.7825668963307162,6.366611562540253,66.69444274902344,200.92361450195312,0.005337883718311787,432,609,0,269,202,1645.4196734399998,7526.373567221835,40842,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41,1.087744671219512,44.59753152,3.2234051789963893,0.5831035818058306,1.3220542504039632,0.38301998356338135,0.43248492196496685,11778.430434228654,525288.9225466397,0.16639296683589996,1.7972644659160228,2.038139091893223,2.121213225869293,0.9703981517816644,5999.418353513546,267559.24912248686,43.05967296187913,3.359786168208226,3.024390243902439,0.1325113820540648,4314.9588583043005,192436.51369072925,0.053324502176858864,1.1438088476444084,1.3876514094905055,1.4861807628169212,0.9979867906662994,1205.4179254783867,53758.663926295354,0.1325113820540648,"CurrentSlice","Yes",962.9799997806549,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",6,3,"D - 6",1,1,,,,659,0,69,75,322.81110431999997,0.6409598646350054,0.5649022527013554,1.3725450502001564,0.3537575314943677,8.39745342748312,6.387865274871475,30.21587328011553,79.55431613819509,32295.774370561652,10425434.58943056,0.2380904715447935,20818.566613993222,3851.9553223285293,29472.50188147868,91305810.82882096,1.7669561259460793,7689.31614879128,55914,223.73270083925112,441.80994151065204,14.623328613281249,8.260751275634766,125.75343447364489,45.22051481222953,3,41.51046139391066,2,45.22051481222953,3,45.22051481222953,3,0.5312584214124205,0.3607406860875333,0.36759174477296624,7.947039618799366,200.161376953125,1095.93994140625,0.0011760315392166376,4877,0.15316373999219218,12391.203679793414,4000018.1437281594,0.2282476874511975,4249.796318644687,7012.739873865746,6802.237491396658,21073331.748346847,1.7669561259460793,2828.2635846496155,32090,1.17301571307149,2.4856207028328763,0.4378176053106588,7.816112226956895,502.8529357910156,171.81192016601562,0.007083311676979065,4583,0.15316373999219218,1.1502727749522197,1.3159073682252282,0.4280234941970934,7.83287477315003,333.94244384765625,181.9774932861328,0.007510668132454157,3909,326,0,455,399,2423.8966780799997,9480.146719972487,51500,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,3.242453844705882,220.48686143999998,1.6266172121000937,0.6407417570925764,1.9394471403834057,0.4154118064521979,0.9341037356576083,16305.25671267957,3595094.87755221,0.16290237762877774,1.9310629597737499,2.9174012085689274,2.984993089030482,0.9800052618436648,10716.290524282813,2362801.2639783295,49.27190994828419,3.5087267846368855,3.0294117647058822,0.15827377658713643,7020.9362423314515,1548024.1964420087,0.10363097824502257,1.3631517775278552,2.486807869052672,2.426140533238669,1.002019170474596,4197.663753248482,925529.7063342083,0.15827377658713643,"CurrentSlice","Yes",976.146999835968,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",5,1,"D - 5",1,1,,,,781,0,72,18,97.73944991999998,0.3491441204267697,0.2693337776124207,2.5542682904795804,0.10569718997021904,6.30344916479755,1.3346935516756033,23.063828459299636,59.31130924149333,34950.27078891258,3416020.2414633594,0.16947975080983219,3451.0543355221926,4530.83082555216,,,1.2328258287634835,5923.363184041062,42549,262.32077014925375,450.6487599147121,12.173068460083007,3.278618513488769,-3.6937966042345796,23.56035437884865,2,13.119004280341079,1,29.918433352777853,3,13.119004280341079,1,-0.9623374144213668,0.04062300160487187,1.1274725974149964,6.8038459535368885,70.42340850830078,1150.1531982421875,0.0010178551310673356,1273,-0.6291668809088169,8925.446695095949,872368.2502689599,0.11936774570286282,952.8163829945883,7239.827789825036,,,1.2328258287634835,1065.4104513846705,14929,1.129220338578818,2.6650813674744347,1.5139047376580395,6.585148039842984,150.3108367919922,88.47538757324219,0.012332357466220856,711,-0.6291668809088169,1.0647564500186448,0.5781753907014497,1.329781188483413,6.68243157214162,127.62779998779297,155.99551391601562,0.006837819237262011,669,720,0,133,19,191.41510608,8857.524224278715,15643,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",580.5699999332428,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",5,2,"D - 5",1,1,,,,1475,25,59,36,174.22213247999997,0.8429067229598634,0.671739376971097,1.153858652184398,0.5070760220907565,5.656372869925839,1.3303874234682107,19.186923534532575,50.96439062083368,32964.311004784686,5743112.558987519,0.15708991856381663,9457.097201805296,4367.206056969879,29950.020879111435,50076434.90987432,1.5350488090964989,5178.36093125395,50889,485.2950488038277,439.26708947368417,9.392278907775879,6.309163581848144,-9.980873502583258,39.83865735317834,2,27.1287254517838,1,60.43792167672572,2,27.1287254517838,1,-0.2622791091065175,0.4387223608366444,0.6495959341590165,7.3625950832479505,151.41099548339844,1082.3338623046875,0.001040174625813961,2657,0.09098552367512357,10947.275119617225,1907257.61618496,0.19775674934173595,2022.1678888606748,7131.548557117599,5351.749625900888,8948125.374506284,1.5350488090964989,2164.897541805166,22090,0.8766862849640084,1.1368450187610302,0.7318685469654999,7.276511866131517,367.97271728515625,131.61822509765625,0.008800587616860867,2677,0.09098552367512357,-0.01638327685628247,-0.4486880704917633,0.714698610379799,7.293558401362007,243.1562957763672,88.00482177734375,0.015476035885512829,2073,1435,0,157,152,1349.70052752,9296.292982320698,29140,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,69,2.109669224347826,145.56717647999997,1.845809313720399,0.713549745967179,1.4613507964322061,0.4774796570938146,0.6628492668845056,12551.182402810638,1827040.1838626063,0.13216822403051492,1.1418643779565636,2.243074831292497,2.207434874220632,0.9849216025114234,6955.656909094301,1012515.3368204613,16.070817256784405,3.221495094675972,4.492753623188406,0.13386128988880025,7356.903374628174,1070923.6518808068,0.09874924190188097,0.8537988593188617,2.44067527275099,2.3563844852223332,1.0036759307355887,4342.6132489549245,632141.9491950076,0.13386128988880025,"CurrentSlice","Yes",593.7400000095367,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",5,3,"D - 5",1,1,,,,81,8,85,40,280.08916991999996,0.7350571577504553,0.49328381865960125,1.3446832249707927,0.33618606502535375,7.742268122969527,4.8063833621562395,27.27039160114867,69.19783944843789,22406.627604166668,6275853.7263576,0.13360368403133727,10541.644772808304,4559.602459705541,19314.3269057962,51916910.72278018,1.206489646614274,2993.6079946349228,31109,39.716048660714286,444.20810624999996,13.886893089294432,6.850179652404784,5.884331770164806,46.841855142007766,3,30.146119519380264,1,40.45030078039191,2,40.45030078039191,2,-0.2804427582951875,0.3899179093663836,0.47028902706916104,7.72156204215885,359.98004150390625,508.4120178222656,0.0021406107116490602,3808,-0.08287245088056694,8866.90513392857,2483524.0987214395,0.1702096873796431,2533.1910531038097,7349.342084129299,3313.921429239512,8907820.801795807,1.206489646614274,1509.2331508709344,23123,1.710866324303723,8.031381881135356,0.5934665532879819,7.53533021501399,825.3982543945312,87.2282943725586,0.012853030115365982,4078,-0.08287245088056694,0.44391271758850614,-0.2418195715585023,0.4320901537698413,7.788170124272465,206.57383728027344,335.2514343261719,0.004631570540368557,3806,0,0,588,73,2179.13125392,9339.132740400708,65225,4,1.2503980799999999,5.001592319999999,6.572010802887122,0.5633752617660462,3.078173600609162,0.02889279596020966,0.6148119192608562,14875.60487804878,74401.71111340332,0.0351144693120763,2.019450642426298,4.834134632325259,5.787788522691088,0.9938190783247823,11798.403680842262,59010.805238360386,104.71020887245709,28.69684045164802,2.5,4692.973170731707,23472.33856869775,0.032275091064131484,0.9575299928277806,1.5176315722480465,1.5101175515772238,1.0023442513076692,1600.6724723612379,8005.911144597379,0.44017365820816834,0.44017365820816834,94,2.013052228085106,189.22690944,2.4982694710680255,0.6172615422231468,1.633619921218294,0.3712595815949342,0.6572887761875638,13279.33752197623,2512807.99869419,0.15268146396719842,1.3404800633473017,2.3913878066602052,2.330711990809693,0.9737962538424692,7726.35381728717,1462034.0540851974,37.176753481786,3.411089531177846,4.25531914893617,0.1269314773966331,6386.797022498051,1208553.8617879,0.07445945663420676,0.8986627235300316,2.0653867930320176,1.9838071711455212,1.0030144710045872,3294.496324127582,623407.3575761028,0.1269314773966331,"CurrentSlice","Yes",606.8899998664856,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",5,4,"D - 5",1,1,,,,1368,0,25,5,9.377985599999999,0.41988089132589906,0.1906165409892915,2.7603353481848982,0.06971890691300686,2.029764985420939,12.416296290602093,7.75392208369416,16.753156965538246,23142.38888888889,217028.9897496,0.0826500596368509,340.81361567400666,4403.214574802628,20174.74513888889,1815727.0625000002,2.0577291317794106,1912.7198218058625,27041,445.4209599999999,452.21052,3.9796532787322993,0.7585877423286438,0.2298501850531822,13.269434258136489,2,13.269434258136489,2,13.269434258136489,2,13.269434258136489,2,0.45427916332871626,-0.8258202330505005,11.11111111111111,4.499809670330265,18.67796516418457,532.5423583984375,0.0019272357458248734,118,0.32168162377717996,15508.6,145439.42747616,0.07413154659971012,162.90398411920074,7536.754843232948,9955.0125,895951.1250000001,2.0577291317794106,1149.6765035962644,16999,-0.6072131059698465,-0.6639346725833875,11.851851851851851,4.453599858292935,14.784615516662598,240.56922912597656,0.00426758686080575,65,0.32168162377717996,0.27755568598045843,-0.9070024117513755,11.358024691358024,4.484406399651155,21.140350341796875,96.01754760742188,0.010642021894454956,57,1241,0,157,56,402.10718255999996,8729.945322622441,16999,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,1.125358272,5.6267913599999995,1.092045758562545,0.5139918041332937,1.6737786884307808,0.3362729362016393,0.5306462260147579,11876.99194805195,66829.35567608826,0.10528874897226678,1.4581917423668105,2.1386161554224095,2.0121206909559533,0.9885229678095453,6323.40444805195,35580.477514084276,24.382742730982987,7.3296353534630265,2.8,0.2913710468685191,6017.253766233767,33857.831502771616,0.10671168279164575,1.0216097433816311,2.0276199817561547,1.9415318362481067,0.9900849727110905,3049.610016233767,17159.51929071362,0.2913710468685191,"CurrentSlice","Yes",620.079999923706,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",6,1,"D - 6",1,1,,,,795,76,68,57,250.80901487999998,0.7608936610640655,0.596144367339657,1.2441942690906067,0.40656889366390525,7.047348419880707,3.171545840397998,24.621833179517726,64.35977544852491,22211.304528458662,5570795.4079824,0.15852151992987157,13372.48189041574,3032.8135718152294,19741.50760783217,47517808.812052034,1.3624621083320798,3520.9697534765064,38731,267.2875194017449,419.19019891981713,12.10652937927246,7.217239297485351,35.81645972557892,26.99292326993248,2,18.247847536652756,1,47.46352828426933,3,26.99292326993248,2,-0.058278816229708194,0.9531044610424781,0.5027919364807912,7.64544270021749,297.8333435058594,501.75360107421875,0.00225284812040627,3600,-0.10530276971132772,9102.222683838803,2282919.5045519997,0.18714303976376556,2553.6296339849832,6680.716203536629,3253.0620785826313,7830120.423148394,1.3624621083320798,1703.4176216602941,32889,3.4114644219627395,28.085869773994812,0.6505399274274296,7.44541418993507,766.8204345703125,92.56761932373047,0.012209771201014519,3675,-0.10530276971132772,0.3135228681553299,-0.21743750856932786,0.4993398806175521,7.653071127624282,311.4066162109375,241.45094299316406,0.005135003477334976,3812,638,0,233,133,1151.1998323199998,8693.440803765387,46933,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,1.714700308235294,116.59962095999998,2.6754991842292504,0.6659824802986442,1.5964542751064532,0.4245958668039911,0.5926730099601478,12949.243213013382,1509876.8503562128,0.18844553289019464,1.2103210194922764,2.213863507419669,2.3156781854040336,0.9604958692358596,7100.08260775721,827866.9408491789,20.24225682462718,2.9278518399801263,4.352941176470588,0.09835390180689109,5031.591155209284,586681.621523091,0.09806699807408223,0.742305444235078,2.0372489386426804,2.1798842748156275,1.0014800242028614,2561.7942345827905,298704.23672986665,0.09835390180689109,"CurrentSlice","Yes",949.816999912262,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",6,2,"D - 6",1,1,,,,1035,0,47,30,116.59962095999998,0.7647747000586566,0.727834838329119,1.1172306886420356,0.6442838727437251,4.553339702934753,5.297451638460001,15.175033653998925,43.771027862152984,25032.7890974084,2918813.7203294397,0.1519177574220645,5728.820006189988,3820.1322408124593,21912.108819039502,24519649.768505204,1.5109443824479716,3802.9251816977903,32030,341.60721072386053,448.73353994638063,7.364939531707763,5.360459573364257,7.575176510455477,77.60373096290753,3,42.694675164705636,1,77.60373096290753,3,59.74118160376902,2,-1.1242362889650135,0.8479874565744416,1.0182396672632352,6.928350464529043,113.17706298828125,617.6119995117188,0.001846109633333981,1299,-0.4435472091949266,10447.268096514745,1218147.50012112,0.13097520063624307,1349.3132552012294,6914.396200069588,4715.971150520611,5277171.717432564,1.5109443824479716,1368.33303504164,19031,1.3391397068168827,3.7898100348847166,1.2083110718190393,6.797449518802092,222.0803985595703,121.67504119873047,0.00897710956633091,1194,-0.4435472091949266,0.2091813917321415,0.4434588249732312,1.0709485441568616,6.89209538265878,145.19798278808594,117.5999984741211,0.009863975457847118,990,854,0,263,157,1566.5403945599999,8796.760409737928,26876,4,3.9595939199999997,15.838375679999999,2.6494760611235577,0.5640223377346473,1.1621897734329227,0.34497101210315284,0.760205700859356,8935.208612040133,141519.190776663,0.14130725121948218,2.9008315240324825,2.545890065451833,3.57143961985987,1.0069029818417117,5425.548578681877,85931.8766592536,53.15345132624516,6.314681517233529,1,3569.285535117057,56531.68521437377,0.0697761303358546,1.0979849006138873,1.1437523926618447,1.2602510224610093,1.0053576743493087,448.6052567481606,7105.178588400223,-0.1582330160596608,-0.1582330160596608,62,1.5293847483870966,94.82185439999999,1.9338560279886647,0.7052966939757249,1.3181485773850334,0.4857508058704565,0.5362022450175704,13638.44652049163,1293222.7902082438,0.1580003387671406,1.4697540064036125,2.3796440228113056,2.4561891587444316,0.9737779609557491,7907.149574497497,749770.5856720236,24.101825280858908,3.4592427801724797,4.870967741935484,0.13237775047551364,5523.548699552727,523753.130560298,0.0703879553783476,0.9695134153405757,1.7699822496522302,1.9024496152400554,0.9967359528458377,2402.868421183831,227844.43957585108,0.13237775047551364,"CurrentSlice","Yes",962.9799997806549,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",6,3,"D - 6",1,1,,,,841,0,26,6,13.337579519999998,0.5257197350686574,0.24837255759099688,2.2424822230858825,0.10836416808704896,2.181790649825956,9.694483145155594,8.076453419663856,17.85526510347228,14144.9921875,188659.95811055996,0.17170768764191072,454.83305798668147,3851.9553223285293,11516.450433114034,1474105.6554385964,1.3443880593852595,2428.8039002285173,19408,275.34587812499996,452.15957812499994,4.233104179000854,1.0513869114875793,-1.890619419526049,62.62154869902286,5,46.59900811823852,1,49.619814883552905,2,49.619814883552905,2,0.31055850876037544,-0.8998720773488329,8.056640625,4.8303694145271185,22.04918098449707,206.62295532226562,0.005380390677601099,183,-0.1723553335780319,9427.84375,125744.61571775998,0.06403533620796745,165.6814999281201,7012.739873865746,3966.213223684211,507675.292631579,1.3443880593852595,603.7151442474346,11139,0.8743973004979382,0.17728604214584465,8.7890625,4.772129414922713,34.438201904296875,95.38201904296875,0.010695308446884155,89,-0.1723553335780319,0.07600711585453392,-0.6859788972916983,7.9345703125,4.841199839223368,23.577777862548828,787.21484375,0.001285861013457179,135,715,0,197,119,703.66151952,7324.2800236931735,18294,2,2.29239648,4.58479296,0.5325913360003611,0.7642324336593194,3.070779041416559,0.12846295956566645,1.0564069668534541,13366.0682382134,61280.65556144039,0.09255104091973469,2.5070602094748837,5.441348080445594,6.867100320117398,0.9909915533521578,10909.679115406383,50018.620004174205,34.355873416907684,5.0633274409789815,1,3303.557071960298,15146.125206481784,0.10447354549128027,1.1674737236553643,1.2568022046627212,1.153732075624604,0.9862967856241086,675.015317574333,3094.8054759069664,0.45082875616088575,0.45082875616088575,13,0.7694757415384615,10.003184639999999,2.6962421515422745,0.7028150135355021,1.249399822809456,0.46883447495075387,0.3576097873571034,10660.994905094905,106643.9004817636,0.17034442539431033,1.607158517620361,1.9519802472406371,1.9517016306250936,0.9475921545990682,5199.364378779116,52010.201891566394,28.260470105437737,2.549891583956071,1.6923076923076923,0.2618471458927893,4540.980086580087,45424.2622526238,0.053100440203619516,1.2834995948705779,1.7275662747236342,1.5691718979380935,0.9963648014796883,1912.4383321941223,19130.47374955146,0.2618471458927893,"CurrentSlice","Yes",976.146999835968,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",6,4,"D - 6",1,1,,,,107,0,80,40,229.34384783999997,0.6660385228693247,0.6858588770432593,1.3916962438469909,0.3548663020710693,7.127313326836234,0.9805478179390438,26.6520226114267,65.78074758637193,32057.9482053612,7352293.195272959,0.1653918394010088,11825.303486533714,3869.194383279545,29467.98915024309,64859044.11968505,1.2312391035778731,5302.123021106958,63394,45.202852885052245,447.75131885506585,11.755424780273437,8.062562438964843,-14.015604114510328,50.36194850599903,2,36.269462242360554,1,49.36422123938943,2,49.36422123938943,2,1.113729395072042,6.095970276014754,0.5232845092716313,7.594619471999801,191.90086364746094,1057.2935791015625,0.0010773144895210862,3137,-0.23603622532138718,8769.184915947297,2011158.6110438397,0.13687874474733558,1881.6591707632265,7122.243673438256,3437.3332337712054,7565570.447530423,1.2312391035778731,1200.3150237521354,19593,1.5386743531887956,7.340772647821302,0.7709931527138236,7.29419014476133,543.1670532226562,87.06314849853516,0.012595870532095432,2502,-0.23603622532138718,-0.27258339006651067,0.2791857134690692,0.6070926003029063,7.48327435481997,290.4847106933594,139.06430053710938,0.008375613950192928,2193,62,0,159,86,937.7985599999998,9893.466888888888,60917,1,5.105792159999999,5.105792159999999,0.5834890072041485,0.627936909811096,1.7385852637839159,0.2898294893456187,1.1886106728775716,9219.367346938776,47072.173520159995,0.11365259476824294,2.3662752002482828,1.8669470100195027,4.037207566155385,0.9813775071073004,4281.162193037559,21858.72436089957,21.907660845346392,,,3609.1632653061224,18427.637504159997,0.14141681891032443,1.2604302574462067,1.393521360182867,1.233823000349763,0.9904026814555937,1019.204210188012,5203.844865816944,0.17777814963160515,0.17777814963160515,54,2.1708299999999996,117.22481999999998,1.7238910549899733,0.6612369983809459,1.389325872635319,0.45923145964899315,0.652722515428592,15294.325195467136,1792874.5180600993,0.15762184412256722,1.3751722811792055,2.8684828662047583,2.6262994546797795,0.9789844752345518,9962.473513291045,1167849.16435031,13.87258996263935,3.0464941606758438,5.333333333333333,0.08695141663590726,6863.669343995202,804592.4033893555,0.08111940283464385,0.84562152642946,2.6501072788898576,2.292582450942326,0.9979029096655974,4273.710288877091,500984.91934576497,0.08695141663590726,"CurrentSlice","Yes",989.3499999046326,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",7,1,"D - 7",1,1,,,,330,0,44,57,164.32314767999998,0.699076758307246,0.6899254447440821,1.3341345152677244,0.35126324944624443,5.906895056038537,2.3601442297798165,21.241123021158746,54.349039448437885,29422.34369055168,4834772.127354239,0.14908044594854966,8905.357325692414,3812.168954793535,26369.74896588717,41585094.11920407,1.6930777033474598,4386.296118238941,38665,113.10957032339886,444.2229496512365,9.723946721649169,6.708798266601562,120.79417657114493,65.68535668941793,3,51.951795794495816,1,52.1019536720326,2,52.1019536720326,2,-0.8920097218031768,0.1642067037495285,0.724186335838297,7.269865444655458,171.95318603515625,849.6356201171875,0.0013202823465690017,2371,-0.06961607088477344,10614.786937222574,1744255.2014769597,0.15061464664545457,1976.7732053581506,6269.521426119783,5978.140847449321,9427528.11642758,1.6930777033474598,1598.742383766565,23504,1.9026148761396144,9.982644140033505,0.8512506790503469,7.146644858250592,397.1181335449219,123.39334106445312,0.008893627673387527,2133,-0.06961607088477344,0.3572972132386836,1.471530892177495,0.8150614673760288,7.179834070456658,279.5947265625,76.04075622558594,0.0167840588837862,1742,268,0,158,181,1233.2051063999997,8754.146092099705,38381,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,70,1.8130772159999997,126.91540511999999,1.8547501028011706,0.7196979384835259,1.3422858597583318,0.4794647087226624,0.5854667459655081,12132.848057205316,1539845.3264396174,0.152880701076737,1.3214068899520501,2.6167293820345585,2.5424877797957732,0.9720850333208002,7496.201967432063,951383.5095579812,21.085785363508677,3.1766269739817847,5.228571428571429,0.10393520983569149,5313.4614889543045,674360.1174601539,0.08352922820742133,0.8853072120541375,1.7406377092977108,1.768926297630801,1.0039855835792117,2260.866764289797,286938.8213121831,0.10393520983569149,"CurrentSlice","Yes",1108.202999830246,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",7,2,"D - 7",1,1,,,,885,8,81,43,283.63196447999997,0.7711507670750979,0.5690958430464099,1.2709389226965717,0.3886218065607462,7.574430796791947,2.2945226112795174,26.400619874540823,67.98496386224001,19949.508082292432,5658318.16779024,0.16114868450537967,10110.378939077153,3850.7860039894067,16640.551432573408,45295580.99946482,1.4731361571190105,3214.836983990865,32315,298.600791623806,443.40706906686256,13.16567993774414,7.492533723449706,-8.335809247909978,59.853854603278414,4,42.473034806748906,1,59.1559362848084,2,59.1559362848084,2,0.15260944470673737,-0.005892805204237739,0.4583438831606401,7.746887609668584,319.4352111816406,410.9095458984375,0.0027193648274987936,3681,0.16021497620360667,9597.37582659809,2722122.55955088,0.17311637087846668,3116.6727955935553,6514.9278837657,4260.830603156827,11597980.901792884,1.4731361571190105,1661.4628730573859,20545,0.6720540520523463,1.417811008820899,0.5538996750563212,7.600782358761243,702.5254516601562,101.22927856445312,0.011139074340462685,4126,0.16021497620360667,0.48627648021774805,0.4583159898995359,0.4483564133862328,7.764578058786456,292.02850341796875,199.77041625976562,0.007354556117206812,4103,758,0,278,160,2232.8983713599996,8536.411638433898,36854,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,110,2.0148459970909087,221.63305967999997,2.046872250030634,0.6944007201065705,1.6183880846869578,0.42715359228676647,0.6756628832801906,11956.090855462578,2649864.99810824,0.1452912059970248,1.267075688215401,2.240417789948515,2.3322442359326683,0.9714700210652816,6619.545632021315,1467110.1521162633,27.068529164439752,3.436366996250386,4.5636363636363635,0.05482425935557231,5903.495786995142,1308409.8340797229,0.07664441708922609,0.8671745523271251,1.7840958380329421,1.9551339328650374,1.0048968546066386,2594.5391372761164,575035.6474540131,0.05482425935557231,"CurrentSlice","Yes",1121.3829998970032,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",7,3,"D - 7",1,1,,,,249,0,44,43,102.63684239999999,0.3942198289560179,0.616946381298306,1.5146800326697862,0.42186182735671207,4.974187588890674,3.073966389665535,18.311610664275275,57.198855724305965,37431.66294416244,3841867.6903699194,0.2070866916420769,5719.589552833737,3560.7736095147334,34526.502707748055,34008605.167131834,2.2235896166658606,7751.599241767924,58146,85.9971971573604,447.1963053807106,8.466626412963867,5.223454527282715,125.2228787204629,43.07136364194265,3,34.16151464383689,2,43.07136364194265,3,34.16151464383689,2,-0.05870916492513465,-0.537308969793115,1.0399649565822362,6.875752775858953,61.05140686035156,1400.935791015625,0.0008642592583782971,1634,0.005280026820399745,13951.119796954315,1431898.88390352,0.23233128938438893,1288.490171684277,6274.143255747517,9057.518582047076,8921655.80331637,2.2235896166658606,3241.2816507824705,28223,0.42837171316800066,0.13298586881534513,1.1100517921100774,6.830529557964526,114.62092590332031,203.604248046875,0.0061868843622505665,1319,0.005280026820399745,0.031868483757374895,1.8743897441545023,1.2852688809296813,6.722663040472929,186.33909606933594,165.587890625,0.00651408638805151,1041,203,0,122,154,968.2249132799999,11013.418747309513,56932,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62,1.77475856516129,110.03503103999999,2.265038484158468,0.7077142301159356,1.5920595126394774,0.4042779209999939,0.6193389398205055,17008.229474619293,1871501.0581751764,0.16507881578857583,1.4896404696531695,3.4756059449240775,3.319115494720501,0.9763293251391585,12114.628259712052,1333033.4965954768,20.09895406576428,3.008066000400181,4.935483870967742,0.10809407968906057,6917.5132329016915,761168.7833019483,0.06820213166547606,0.8857923037671626,2.381112458512599,2.370523629314614,1.0027049527291425,4012.3529964873096,441499.3865119181,0.10809407968906057,"CurrentSlice","Yes",1134.5,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",7,4,"D - 7",1,1,,,,22,0,15,10,11.253582719999999,0.9498898157053112,0.737934131916731,1.0672184479104956,0.6705548474419047,1.3825541636968686,0.06016032255755513,4.56508137934035,12.20151393107649,2421.074074074074,27245.757363839995,0.028454295631690146,108.60536901014339,3548.0510836031403,20.15458254865007,2176.6949152542074,0.7539664803173951,68.88995744992418,2625,9.334299999999999,451.5882333333333,2.2249080568313597,1.64183559551239,-6.620572568255898,18.15155848348625,2,10.645633677859538,1,18.15155848348625,2,10.645633677859538,1,0.5369307134571671,0.07369417740345785,13.545953360768175,4.393194429359628,25,9,0.1111111119389534,25,0.055158739642720174,4786.9537037037035,53870.379481439995,0.022497569856289742,109.92545798408665,6349.027216287591,27.50031387319541,2970.0338983051042,0.7539664803173951,107.69482534789898,5058,0.004304521457919274,-0.5393499753962852,12.345679012345679,4.467064504296004,25,25,0.03999999910593033,25,0.055158739642720174,1.5327502073295487,1.5794629810740197,11.31687242798354,4.536089689012337,17.53333282470703,7.644444465637207,0.17145061492919922,45,22,0,15,11,13.233379679999999,4774.4094488188975,5058,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1147.659999847412,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",8,1,"D - 8",1,1,,,,62,0,48,41,119.62141631999998,0.598175490662365,0.590249386814124,1.2365997898499492,0.4929237261121878,4.852093040173183,3.2064527274364383,18.60235653458991,50.12969875876771,29615.755226480836,3542678.58557808,0.16281326855888226,7319.352583145204,3454.636175625194,26475.569854729878,30393954.1932299,1.3783968379153644,4821.837909263145,39410,29.136636585365853,447.18625609756094,8.357018435668945,4.9327250072479245,49.408714528152515,20.435140822691302,1,20.435140822691302,1,20.435140822691302,1,20.435140822691302,1,-0.9111301195184744,0.8489165928022206,0.9484757615122195,6.984942111548711,106.31851196289062,877.4266967773438,0.0013175163185223937,1664,-0.38513991990818885,7180.797038327526,858977.1120311999,0.1760794486893376,1209.2561014897676,5209.528084225362,3514.199415921723,4034300.9294781378,1.3783968379153644,1264.3907836587389,16381,1.0431317167975291,4.859971007111094,1.156381648435698,6.838262415170813,290.5927429199219,58.360870361328125,0.019998138770461082,1380,-0.38513991990818885,-0.14754161678191974,1.5193384651802129,1.109337250664692,6.871702587212094,162.0387725830078,166.9729461669922,0.006932223215699196,1109,0,0,228,126,1048.5629899199998,6858.54357547451,36104,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,55,1.9551679069090906,107.53423487999999,1.9022187217206197,0.6990284758496489,1.4369858984349915,0.49168655700992653,0.6151399301837975,10828.215310962336,1164403.848580236,0.18699404583015614,1.6011200567874473,2.953205239864173,2.8279302654151515,0.960659283790046,7161.617688556533,770119.0786420008,22.331626235036367,3.2355983195861127,3.963636363636364,-0.010949668525582277,4850.678481649142,521613.99917302054,0.10324420147109911,0.8904222016786963,1.5447108713026134,1.6725922772190545,0.9989260333408052,1710.4931098981847,183936.56784041302,-0.010949668525582277,"CurrentSlice","Yes",1476.276999950409,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",8,2,"D - 8",1,1,,,,875,0,99,33,243.93182543999998,0.5389125920870573,0.40462207744593165,1.7831732051055273,0.20836083944012618,8.32033976480094,1.762270682078794,32.00281592860228,75.41886620703157,19826.671507902607,4836356.1733219195,0.14411460276531762,11028.852765290087,3713.507841570827,16656.791427789114,38993548.732454315,1.045500759763025,2857.3128885198253,27194,300.76479777872703,448.69461990602304,15.426199781799316,6.241781002807617,6.200552059579089,80.63729173573505,4,72.74403066430749,1,75.9414064346583,3,75.9414064346583,3,-0.9515643176942523,1.385214176314732,0.5446800994328576,7.5828270348975115,253.69801330566406,389.896240234375,0.0029486846178770065,2573,-0.26421037262089825,5883.337889790688,1435133.3511369599,0.14951640031416574,2023.190673219471,5627.291835851191,1578.2860663741812,3694767.681381958,1.045500759763025,879.6555031134436,9819,0.4386039869282387,1.7443794056101956,0.833351428512516,7.235242370860655,562.9065551757812,39.96553421020508,0.02869429439306259,2205,-0.26421037262089825,-0.782961132658876,0.8529267983331237,0.534461645306144,7.5966334816788645,218.52163696289062,365.0552673339844,0.00340654025785625,2588,740,0,304,87,1711.16977248,6675.768176835952,26585,3,4.445859839999999,13.337579519999998,4.56584818693512,0.7902608901708897,3.3701614063279237,0.19465368977444578,1.3501334807899872,8343.452956989247,111281.46728522322,0.18723996315792038,2.4522385952770773,1.3848899856938286,3.176406231462164,0.9819910170091667,2318.8206445466203,30927.4547392582,33.564782015054085,9.066280734671343,2,3585.3123879928316,47819.38907889548,0.05652009843567601,1.0734699896072686,1.1310561590280928,1.2402009759981945,1.0025692767028078,415.4323078793377,5540.861441517789,0.1059218799611414,0.1059218799611414,94,2.4165494808510637,227.15565119999997,1.920842760501322,0.6658166993530042,1.8013558073705915,0.3909297581874952,0.7620003805389729,9959.62743773806,2262385.656328776,0.22568036153065735,1.2570660294151397,2.3134744589053655,2.321022421308578,0.9630511830703011,5654.575614321553,1284468.8059308522,29.971844004718488,3.027416801797576,4.319148936170213,0.1119508187203506,4062.8083925025485,922889.8860997416,0.06993813468178232,0.7148875204816714,1.2816915119252978,1.3685639092389734,1.0003375870555922,892.9283123890546,202833.7122756527,0.1119508187203506,"CurrentSlice","Yes",1489.4029998779297,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",8,3,"D - 8",1,1,,,,98,0,41,62,223.92545615999998,0.8102039992967995,0.6426314670002549,1.1210445966940932,0.5833334331619653,6.320817515783961,2.9619471466984346,20.932279550971028,58.9331255173614,18778.547696603073,4204994.858984159,0.1718448542198844,11624.30018641712,3320.0161771868457,16074.514076922145,34544130.75130569,1.5722041340373525,3226.9967913839014,30520,38.08889790600279,443.7867618427175,10.634969755554199,6.834366215515137,91.09272607403825,102.10732457856865,3,91.04994379251504,2,91.04994379251504,2,91.04994379251504,2,0.10198988718883983,-0.1844355364898176,0.5493481119596137,7.552430045805378,262.57928466796875,369.19683837890625,0.0030804970301687717,3109,-0.10141918322389493,8763.034434620753,1962266.4831182398,0.2104710681310224,2902.457724026338,5573.725602741966,4642.647608512702,9977049.710693797,1.5722041340373525,1844.3652175235597,23483,2.3405439821789704,9.831269792420569,0.6883632825855782,7.37753549752058,532.0853881835938,88.15325164794922,0.013378671370446682,2845,-0.10141918322389493,0.49664854215348897,0.6938861654718433,0.5891904661577095,7.500481535256153,312.64447021484375,161.7891082763672,0.007217674050480127,2627,74,0,152,216,1765.8746884799998,6776.675635805747,32789,2,1.9276970399999998,3.8553940799999995,0.5666399587369235,0.6958185843916704,2.933973016439742,0.09149260574896723,0.9480294898608713,12691.881987577639,48932.20667896546,0.19919698738101094,5.773612233417818,3.8450883192528997,4.503029343996881,0.9707418723232344,9391.078226054764,36206.30739754844,52.642367289027284,3.8774592253624864,1,2865.658385093168,11048.242373190558,0.07551369222798385,1.0693166322098264,1.059771729255094,1.018556031929125,0.9975320036050475,161.62476541224078,623.1271637517418,0.06259969565265484,0.06259969565265484,65,1.5485699298461537,100.65704543999999,2.1809714745907356,0.6753973242952346,1.5029624170493303,0.4432369878358435,0.5629962841444489,11106.228281742418,1117920.1248223595,0.1520313116435193,1.3997369459243545,2.6954334023616195,2.5625313283716005,0.9708576787921471,6985.841455634368,703174.1608364242,19.137321879088002,4.046388563371242,4.769230769230769,0.06778283470292856,4141.983999026247,416919.8716017378,0.100122055073176,0.8169036001333457,1.5317797711091317,1.454406389065469,1.0034953298433666,1437.95037934532,144739.8366742271,0.06778283470292856,"CurrentSlice","Yes",1502.5230000019073,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",6,4,"D - 6",1,1,,,,336,0,78,43,229.55224751999998,0.6727632949733401,0.8973393248384428,1.4061173258094013,0.3340045417172227,7.167399471352284,1.452430604523092,26.618769918987617,65.4808882760421,19412.756241488878,4456241.825791679,0.14201703856339493,8443.987047812052,3869.194383279545,16639.7563095485,36657383.14993534,1.2167703981268978,2756.9421517693113,27561,119.46515896504765,447.22306218792556,10.6690421585083,9.57375108718872,-20.169071753257917,34.39119280510262,3,31.428796418723085,1,34.39119280510262,3,33.514181972017674,2,-0.4707817094272982,0.31673868055460463,0.5610720659258648,7.5443992314916715,268.6063232421875,383.1239929199219,0.0029025734402239323,2718,-0.35392679842447483,8666.135270086246,1989330.8285606399,0.15817931145339573,2191.186706068322,7122.243673438256,3039.499048756361,6696016.4044102635,1.2167703981268978,1370.80330998423,25668,1.5656988429138685,12.948584764378136,0.741571195470873,7.323658384399161,518.1561889648438,81.79314422607422,0.013815087266266346,2567,-0.35392679842447483,0.37288536152879154,-0.07731039413228213,0.5297525822605208,7.585706213678192,213.31759643554688,342.5407409667969,0.003515397198498249,2859,173,0,369,112,1238.83189776,8704.199428042728,42428,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,74,1.4221870054054053,105.24183839999999,3.030782805960071,0.7204068772820515,1.5582245352016668,0.42609899452890276,0.5200840616296705,12583.842087977671,1324346.6754740644,0.17816611013976974,1.295607941819907,2.2364769274178196,2.1608627507951192,0.9667692028623741,6957.205866647786,732189.1355332781,19.7139799776796,2.923362302698188,5.1891891891891895,0.014180983431857277,5728.5934555041,602887.7067034601,0.0734291435084602,0.8619332090318151,2.0658469513540787,1.9134477735530233,1.0001474868545082,2955.5935235637207,311052.09598297963,0.014180983431857277,"CurrentSlice","Yes",989.3499999046326,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",7,1,"D - 7",1,1,,,,966,0,39,55,159.63415487999998,0.7804976496989181,0.9594802871230054,1.2192033282553807,0.4395254391601745,5.565587717996292,0.763146831030402,19.435133650170762,50.69697434496562,30517.45822454308,4871628.65276064,0.1278777155101139,7424.827711623,3812.168954793535,27018.699542441565,41392647.699020475,1.21643553790793,3902.5028409299052,45222,317.67607676240203,444.64351488250645,8.031876342773437,7.706427019500732,113.55740893814392,29.39605495618821,2,26.081495234087843,1,46.22064997393228,3,26.081495234087843,1,-0.35182929105774774,1.1816352892732054,0.73966009721247,7.243157070666387,170.23023986816406,929.4778442382812,0.0011706302175298333,2302,-0.11070760094223908,7626.46866840731,1217444.8805999998,0.1730221291813454,1426.38180185019,6269.521426119783,2623.914794854327,4019837.4657168286,1.21643553790793,1319.547847142653,27443,2.7121762431450795,34.50550417456435,0.9134972629167831,7.083945082576337,436.1549987792969,66.22982788085938,0.01731611229479313,2045,-0.11070760094223908,2.216485059091748,6.262571767722838,0.8359522527251533,7.157156960718669,213.11904907226562,171.00238037109375,0.007295618299394846,1680,926,0,123,114,532.56538224,8021.910193699863,59741,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,2.2048686143999996,55.121715359999996,1.2868138059497136,0.6916683651353125,1.4993200295990292,0.4625081641069827,0.6897545087670318,11432.313701994108,630168.741787547,0.24649876044633584,1.528056862193637,2.2852954692668788,2.3956879493640497,0.9670208835312954,6429.759828441124,354419.39109649404,14.25195438726977,3.308815289891956,3.6,0.08471942136198553,6997.013412370416,385687.3816867843,0.13647194905752347,0.9006434772322036,1.999855962677509,2.329404486274597,1.010767483427391,3498.2547302689018,192829.80149865596,0.08471942136198553,"CurrentSlice","Yes",1108.202999830246,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",7,2,"D - 7",1,1,,,,1348,8,49,55,163.69794864,0.7325155576774296,0.4872690342657397,1.3674474515842299,0.3210610834347507,5.968799746725137,4.386769049763868,21.63000882108003,52.99295337951438,30287.550604710377,4958009.903321279,0.14829517506303053,9567.003870559294,3850.7860039894067,27317.219690588332,42915352.13391427,1.40749232772689,4491.497619155922,49680,442.6249626989179,441.7683406747295,10.733026116943359,5.229871270751953,128.8101605425808,117.59095109702659,5,99.77310837507932,1,114.75275720024469,3,99.77310837507932,1,-0.08198702716768165,1.6455886335658088,0.714331731117919,7.275853274008136,167.60496520996094,912.455810546875,0.001220612321048975,2420,-0.01827850476534595,9169.711012094207,1501062.8823014398,0.16682140492479047,1768.1043590211193,6514.9278837657,4053.1694324058726,6367529.178309626,1.40749232772689,1529.704073791878,28339,2.1287657491503733,18.920022321497985,0.8593860474765208,7.134729815122535,484.8494567871094,92.7588882446289,0.012014895677566528,2418,-0.01827850476534595,0.5539255501067142,0.9562021566958765,0.7953676620445123,7.195418303289587,265.6448669433594,100.500244140625,0.012338888831436634,2019,1199,0,258,306,2075.1398136,8228.129952297264,50266,2,1.45879776,2.91759552,1.1173593361351462,0.4012833541002909,1.4627787894369486,0.28214459219619964,0.5431054769685171,7715.356060606061,22510.28827762909,0.10619813575734675,3.113285383785306,3.160538955073239,3.3671791828654882,0.9879432205265422,5274.204038663249,15387.994074769798,45.034212282921125,5.150043666765053,1,4052.181818181818,11822.627518952726,0.07067750917500154,1.2752605659277738,1.3642189827794124,1.3675278569618567,1.0052236692771601,1081.8509040597733,3156.403350992744,0.4005833459596111,0.4005833459596111,128,1.6842927262499998,215.58946895999998,2.0075798431092666,0.7032271388312472,1.4716338928642114,0.4825122428325108,0.5898888265860762,12478.031826040195,2690132.2550419844,0.2074196358083752,1.5304677483255562,2.438762908831921,2.43405793364061,0.9533594273812609,7361.49024635186,1587059.772965217,31.346595471469325,3.081538285859931,4.6875,0.1032134115348462,5082.371131192569,1095705.6932314401,0.06891432302811792,0.9550891151404074,1.7110454283154475,1.683191894520858,0.9974555258992456,2112.0402170705242,455333.6288203974,0.1032134115348462,"CurrentSlice","Yes",1121.3829998970032,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",7,3,"D - 7",1,1,,,,342,8,60,52,202.77288864,0.7682779852600078,0.5440074263961396,1.271307316356278,0.3856958370592166,6.4053117435712,4.123704809188796,22.48505333949644,57.59047779331649,27944.446557040083,5666376.149817119,0.13984545138827817,11897.151714995249,3560.7736095147334,25029.57287902996,48707548.8225923,2.2566380170395837,3907.903742564886,42928,119.78849229188077,442.2933940390545,11.253316758728026,6.121887888336182,-38.04389780041731,63.5251496217336,4,34.145133862563796,1,56.47828722327069,2,56.47828722327069,2,-0.3886095671503238,0.9558125041520436,0.5909822134950974,7.473071546926495,225.55868530273438,779.567626953125,0.0014186641201376915,2914,-0.25869815530108237,14158.470195272354,2870953.9002187196,0.1978911344359981,3133.740896986184,6274.143255747517,8917.021829854271,17352524.480896413,2.2566380170395837,2801.8357288207135,34039,1.9559438149369288,7.156940101170296,0.6474925770732702,7.403942689186442,400.1913146972656,216.69117736816406,0.005283789709210396,3183,-0.25869815530108237,0.5315017959874204,0.49506155983940525,0.6760118259818808,7.371522368290073,362.0291442871094,57.973716735839844,0.023180020973086357,2435,261,0,457,235,3459.9556872,9106.665502183407,60136,1,0.72939888,0.72939888,1.294717943765261,0.45228337486605,1.355556105700849,0.31947684798524456,0.39669008516709836,5443.571428571428,3970.5349031999995,0.06870545572200308,3.53191503056888,2.459186784515643,2.8106952781478496,0.9984246941055511,3230.0057641627427,2355.962586773848,120.98583297844509,,,3156.285714285714,2302.19126496,0.0824907276402915,1.100888394994259,1.082820754153709,1.0898003234725109,0.9540715467729861,241.41203627559344,176.0856688779372,0.27595201508879963,0.27595201508879963,153,1.8538036894117647,283.63196447999997,2.007215378459086,0.6788365115915441,1.459067807111935,0.47641465558336976,0.609773990247836,14954.490759259465,4241571.591846768,0.16756737437100414,1.3244409851404186,2.8531218313483513,2.9183332732417564,0.9739236555792796,9713.04239384138,2754929.2952427524,26.13553148937183,3.5136927245800456,5.150326797385621,0.11031490562978163,5426.743152291171,1539197.8210127326,0.0801472829710762,0.838306417785948,1.8617421376544225,1.8596600309402425,1.004205425146005,2511.8694742810503,712446.4735076791,0.11031490562978163,"CurrentSlice","Yes",1134.5,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",7,4,"D - 7",1,1,,,,1137,15,48,58,187.76811167999998,0.8007290134381476,0.7150318792069142,1.1829703148926236,0.47289708623800275,5.945767167399833,6.658944319557253,20.01620305652398,54.284153379514386,27936.18923418424,5245525.50003792,0.16828995234926625,10126.236020846736,3548.0510836031403,24941.396034586996,44944395.65432577,1.5897530099954074,4701.37995504095,44616,374.6208645948945,438.89442885682575,9.671609195709229,6.915508898162841,121.95497720997965,27.722196909995006,2,22.69794587337902,1,79.54970489992037,3,63.398127212058036,2,-0.2603919541325329,0.9080529504219297,0.616530405850695,7.4236548708525385,180.9453125,786.3884887695312,0.001470446353778243,2816,0.3187287425492522,10093.38512763596,1895215.8658751997,0.22058394897346473,2127.4194962141764,6349.027216287591,4525.96858360374,8155795.387653939,1.5897530099954074,2226.4387499639784,21828,0.7921231677507933,1.0622240984862223,0.6941356317619712,7.3361755508600535,363.18011474609375,113.70524597167969,0.010566129349172115,2765,0.3187287425492522,1.2506470448710116,1.5329626508276668,0.6245372942383663,7.411636301688191,208.87379455566406,182.54981994628906,0.008405235596001148,2710,991,0,231,399,1109.2072967999998,8810.814654767497,32820,2,633.3266275199999,1266.6532550399997,3.209850388723541,0.40315507296441205,1.1577052689312435,0.2689749466148108,8.861229277607446,14243.701703142997,18041831.126104865,0.20595539210933306,5.431426961019031,4.457793141511408,7.0268956933968365,1.0210567240201702,11048.465573744294,13994574.882180588,31.709005183837615,38.414834189646676,1,8162.47050353793,10339019.832474306,0.45457297136874814,2.688990489272158,2.7255539730207974,2.868215745194472,0.8862936868948097,5167.677303940687,6545655.278032802,0.5171126047939406,0.5171126047939406,39,2.2523196184615384,87.84046511999999,2.778130740954642,0.6786504442095532,1.9839519698155352,0.3497160108096506,0.7550903459672924,13381.550692103778,1175441.6368212535,0.16232143139319227,1.9078490224682338,2.4035476035015955,2.5964812111680717,0.9767109890210244,7814.134148071557,686397.1780766805,44.60463531728782,4.124211384429892,3.282051282051282,0.15117132692574317,6082.299667061345,534272.0317538896,0.09120928816969905,1.3702767529173467,2.030958153597827,2.119086124614482,1.008054685245652,3087.506467464102,271208.00416305487,0.15117132692574317,"CurrentSlice","Yes",1147.659999847412,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",8,1,"D - 8",1,1,,,,1140,0,57,26,134.73039311999997,0.7726794220704615,0.47747260665973446,1.3232729397598062,0.3567424115839565,5.326814412718744,1.1352661294208741,18.217477608055404,46.80993600008701,25861.50348027842,3484330.5305721597,0.14110017029065755,6605.017261277078,3454.636175625194,22681.787418102256,29327551.131606217,1.2334227886865072,3649.0625450397183,38147,376.959249187935,449.07346821345703,9.616403775787353,4.5915693775177,-3.0724962535746605,24.14158595431692,1,24.14158595431692,1,35.043386794690505,2,35.043386794690505,2,-0.3796576441293158,0.6902051746184452,0.8631162264056144,7.086978776131045,144.7853240966797,666.6321411132812,0.001661726855672896,1854,-0.2765565526964405,6425.550657385924,865716.9660820798,0.2031078869675284,1293.288159195464,5209.528084225362,2636.57811852582,3409095.5072538853,1.2334227886865072,1305.080016624468,16430,2.839512887712536,13.82477736746732,1.1837193430746438,6.847358124101625,309.9427795410156,51.92066955566406,0.022905530408024788,1311,-0.2765565526964405,0.6820697653520279,0.36192025965941266,0.859527385547379,7.088860284753356,117.64615631103516,302.24884033203125,0.003987911622971296,1495,1077,0,132,48,430.7621385599999,6424.566763425254,20865,1,1.45879776,1.45879776,0.5868913344788853,0.5411518196089624,2.56914483926384,0.07988060313258438,0.7723282468129916,9568.142857142857,13957.98536736,0.14554452696196232,1.8870587837533248,1.0226032258163784,3.4521844608878585,0.9700610236807585,211.49052553663932,308.5219049140722,13.042566449606989,,,3762.6428571428573,5488.93497168,0.08192918502600621,1.116047593623675,1.183326681869746,1.3204687303524878,0.9753300958622781,582.9267949666914,850.3723027413887,0.41984179004087185,0.41984179004087185,16,2.42264628,38.76234048,1.8562006052589128,0.7124052080050896,1.6390010914056548,0.42235365071088316,0.7343939087665038,10114.550672022158,392063.65695113566,0.17896709751321221,1.9064788168416436,2.669470567096028,2.641547396783761,0.9619013902654633,6325.578133162055,245194.21333047032,10.540294610552062,4.220531124961761,3.75,0.0983700058347559,6608.412423728294,256157.53240081813,0.16121786902896923,0.9422490634577699,2.0783026831664846,2.27868732723108,1.0118976364210428,3428.696361552128,132904.29576902077,0.0983700058347559,"CurrentSlice","Yes",1476.276999950409,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",8,2,"D - 8",1,1,,,,1132,0,55,37,140.669784,0.7164181360092898,0.8428070389966331,1.2699660069743237,0.4058634346295179,5.332201410054675,3.850648332231597,19.346468031142013,49.67319062083368,26880.656296296296,3781296.1149782394,0.12999326408743628,9243.100929405162,3713.507841570827,23723.271800391183,32026416.930528097,1.2211793511066653,3494.304252768051,37264,373.5020764444444,447.7035146666666,8.15680951309204,6.874616473388671,-26.64077414778513,86.2826097843861,5,72.74403066430749,1,76.61752781631776,3,76.61752781631776,3,-0.5863622197631259,0.9226605183662264,0.8395061728395062,7.117997421335166,158.38626098632812,713.5897827148438,0.0015346152940765023,1877,-0.29847807383283953,6871.932592592592,966673.2734625599,0.17607772448583103,1377.4422989178645,5627.291835851191,2662.8721576871985,3594877.412877718,1.2211793511066653,1209.994253723721,14382,1.0496802977051953,4.217188394918572,0.9887517146776406,6.993316628762732,328.2763366699219,53.50629425048828,0.021675705909729004,1509,-0.29847807383283953,2.126451348932119,4.703813435382661,1.0216735253772289,6.9724046063176734,185.8952178955078,82.5116958618164,0.014591422863304615,983,1089,0,210,180,2233.31517072,6743.648859235758,44764,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,238,1.4338423361344537,341.25447599999995,2.2046727919741413,0.7077189642555435,1.3775267063372139,0.49050223008121113,0.5209126686139922,9631.421430438673,3286765.6733795195,0.2419332431521603,1.1542819909552768,2.288259239655027,2.2445362769711297,0.9549094117930252,5422.3609955332795,1850404.9602135476,26.74563151559225,2.777129983140579,5.714285714285714,0.08965780442428654,3836.2195579803383,1309127.095079532,0.07288326194548841,0.6803081803031547,1.2149991750943303,1.292237075382896,0.9985074757294398,678.8350620752267,231655.50339890894,0.08965780442428654,"CurrentSlice","Yes",1489.4029998779297,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",8,3,"D - 8",1,1,,,,385,0,51,48,152.23596623999998,0.7117278822999821,0.5507291918311931,1.2793682610691726,0.41122968159730533,5.567580145899012,2.6528936068321505,20.377349248614255,51.84496386224001,24019.452429842575,3656624.5492127994,0.1628537712572996,9568.542055015369,3320.0161771868457,21279.903579551446,31089939.129724663,1.99216670245703,3911.6584117351717,36646,131.3305503080082,445.9905108829568,9.753535654449463,5.371556808471679,128.80291635629763,117.46410276820393,5,93.26769136463471,1,115.89160417265674,4,103.14965399816302,2,-0.4490521757984055,0.4015900904313501,0.7697277281413487,7.202892426814021,159.07057189941406,580.9761962890625,0.0019823689945042133,2182,-0.146835777745564,11103.790554414785,1690396.28397792,0.27760584658742254,2451.5791247225843,5573.725602741966,7076.046327631009,10338103.684668904,1.99216670245703,3082.4771771877427,28895,1.0858211130902489,1.9219530778139342,0.7959631224054483,7.1769148800008775,209.55162048339844,139.6432342529297,0.009583222679793835,2063,-0.146835777745564,2.706335476279,9.085022381907288,0.7641058579418989,7.2085856274757045,138.27037048339844,249.05416870117188,0.008979630656540394,2012,224,0,311,196,1885.1835052799997,6979.528023435772,42817,3,616.2725870399998,1848.81776112,4.362929576109652,0.7495536938951962,3.389256530924019,0.13058319876635185,8.208207050669055,15491.876253046625,28641655.969705753,0.2249443077418157,6.589652405785697,5.250255145974073,5.496456193755691,0.9853861654479088,12541.186082317325,23186367.574499216,40.18398946793898,33.347401155939124,2,3715.776747222004,6869794.046620741,0.39196033032008387,1.347938519721346,1.3563462271633278,1.3207180726330388,0.924612054709384,976.2278969308759,1804867.474746628,0.13058774501217443,0.13058774501217443,111,1.7047469318918917,189.22690944,2.562456157815167,0.6465415174031971,1.556913484852512,0.4008042911361377,0.5832584086804646,9837.49999882105,1861519.7213929107,0.19888124824661516,1.4997478498754744,2.4424341380476546,2.2697986481401213,0.9675679622619685,5809.755772037273,1099362.1293438144,23.799683005814718,2.972567748674242,4.342342342342342,0.14212396796928894,3989.9625516931046,755008.2824382224,0.08224430097281621,0.9071537712798123,1.4564305182107253,1.4010259403895973,1.0027464750490247,1250.4137014019766,236611.92023772697,0.14212396796928894,"CurrentSlice","Yes",1502.5230000019073,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",6,4,"D - 6",1,1,,,,1373,0,65,41,194.85370079999998,0.7484173402515264,0.9845629607876571,1.2326275052590858,0.4328828805716174,6.1827308315420035,0.620655494870596,22.422404598971983,57.198855724305965,26610.13155080214,5185082.611448639,0.1643730020120548,8811.188138675165,3869.194383279545,23272.054781111212,43518742.44067796,1.303755473258099,4373.987206941043,45417,452.91084064171116,447.06643443850265,8.813983293914795,8.677921488189696,-22.892903488265127,54.47471054601988,2,47.23142841075033,1,47.23142841075033,1,47.23142841075033,1,-0.17399124024481105,1.069632056651301,0.5959564185421373,7.456678594579621,180.3450164794922,713.67919921875,0.0016029232647269964,2681,-0.25953846467599334,9285.664171122995,1809346.0281292798,0.12828369684589458,1701.2528356915175,7122.243673438256,3851.142735430074,7201636.915254238,1.303755473258099,1191.1993275411273,14833,0.41305147330463443,1.2538274614077398,0.8035688752895421,7.219742707015468,491.7953796386719,93.26370239257812,0.011646408587694168,2336,-0.25953846467599334,1.5930467879071581,3.859296891634779,0.6125425376762276,7.436662579739922,142.64132690429688,130.25584411621094,0.01874840259552002,2013,1286,0,253,78,1189.7537731199998,10055.863198458574,36698,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,58,1.8522419834482755,107.43003503999999,2.7235523453051798,0.6806620819093115,1.4510839051267943,0.4381290038290299,0.5796981704678448,13443.894208606062,1444278.0259046021,0.17416098183997233,1.35644829441119,2.473795414681609,2.308548535328586,0.9573917524407098,8009.372772913141,860447.1976424806,16.484546707516795,3.3460909690663105,5.068965517241379,0.0779251182923858,5831.182708515471,626444.1627004591,0.060754202163406074,0.8748530142221886,1.7468689640278647,1.947714331180091,0.9989012149701203,2493.105938824544,267834.45836635283,0.0779251182923858,"CurrentSlice","Yes",989.3499999046326,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",7,1,"D - 7",1,1,,,,1627,17,37,65,164.53154736,0.6379031062199552,0.9718674643832077,1.200443210766536,0.47711827911624727,5.606676291809504,2.0310473720165563,22.125344027155826,56.931439448437885,32809.654211526286,5398223.17576896,0.2018652593134834,9868.626999925269,3812.168954793535,29698.57908102666,46894056.36894109,1.5238253175671017,6623.1293553954765,65535,531.406484610513,438.6224390120329,8.043786291503906,7.817494187164306,66.71698738851865,61.66379334844171,3,54.21064247394814,1,62.33275114578238,2,54.21064247394814,1,1.236163770597902,5.96497186387602,0.7159356034976162,7.300136101373956,132.82102966308594,1075.7122802734375,0.001095337443985045,2492,0.27909016898784167,9553.655478150728,1571877.7187644797,0.2518947724724542,1882.2522699746044,6269.521426119783,4883.187543773397,7710553.131618194,1.5238253175671017,2406.515872948993,25355,3.0435544775962784,13.052407288385034,0.8330522400361617,7.1620187967286,431.1368713378906,104.17002868652344,0.011594592593610287,2382,0.27909016898784167,1.6250226265424228,4.718774826994583,0.7472201844907893,7.2437031410716415,195.33792114257812,140.17355346679688,0.009732556529343128,1959,1530,0,134,187,1197.9855604799998,8225.84717752457,65535,1,1222.7851223999999,1222.7851223999999,0.27754033412005996,0.742983005918003,1.712813089368729,0.4237887892577642,18.257450416159394,13678.026416702172,16725287.206137598,0.4132971642332028,4.256009308781768,3.0200983198587235,6.532133579351367,0.9236764879730027,9149.026043846094,11187292.930865131,11.68374455462438,,,8710.194972305071,10650696.82533792,1.1170096664270002,2.4901274133073708,2.799737906331515,2.9308576980935834,0.7420252079777814,5599.119841805445,6846520.441094338,0.25998381792938585,0.25998381792938585,57,1.7001026526315786,96.90585119999999,1.9940989447131297,0.6156092165625884,1.4527784652114073,0.42005574528450973,0.5878708588036822,13407.09146228024,1299225.610268519,0.1970675188494604,1.3548519032456088,2.870609894052871,2.8095106808172994,0.9734758652991922,8736.62352790291,846629.9395853783,12.911005904838293,3.289206439584135,5.9298245614035086,0.07359604574814732,6530.116723149259,632806.5194921336,0.0955741128895921,0.7742230246375743,2.0989903648198127,2.173967990958509,1.0050062381448646,3419.041592649632,331325.13582391624,0.07359604574814732,"CurrentSlice","Yes",1108.202999830246,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",7,2,"D - 7",1,1,,,,76,36,57,61,208.71227951999998,0.7206062593591013,0.4458825112149413,1.3919196328771701,0.31598910402723646,6.799722028673821,2.7903420536900274,24.26374035469387,60.3295266209207,23855.09385921118,4978851.01751952,0.1863546890457744,11544.953284269472,3850.7860039894067,21172.56647292034,42408650.64525945,1.1287539180230792,4445.508598291062,40932,33.98021967049426,431.06064143784323,12.420686293029783,5.53816679534912,131.9260022132038,42.078089911963616,3,19.34769171915803,1,39.07602187208743,2,19.34769171915803,1,0.10753330676331904,0.7173031409576764,0.572032615081372,7.504461144386815,204.39266967773438,581.7716064453125,0.0020246419589966536,3056,-0.017993926302415548,7353.750374438342,1534818.0036700799,0.18751535014889636,1892.4537712284657,6514.9278837657,2583.441918320469,5174634.162395899,1.1287539180230792,1378.9410763703834,14134,0.583352662850885,1.3201719185231902,0.7240761424014752,7.3224903741568985,607.7979125976562,61.44736862182617,0.018902210518717766,3078,-0.017993926302415548,1.2772414100705933,4.12999267201367,0.5829996891831498,7.490958253186009,264.5455017089844,210.02554321289062,0.006388956215232611,3054,0,0,146,364,1472.2395393599998,7722.416873097884,53903,1,11.14938288,11.14938288,0.5719707251617532,0.28972816247652655,1.9059385293761877,0.1514364580131632,1.8390347618288252,11611.607476635514,129462.25760927999,0.11134522104994722,1.113066885035209,3.8433394593262618,5.067603188732302,0.9812439033558638,8590.378777083944,95777.42206993506,42.57318303610474,,,3760.5233644859813,41927.51481984,0.057577985313541385,0.9658713115749682,1.4018583309547117,1.2690991392873774,0.995910337564593,1077.995978195142,12018.989903997768,0.8351809239509269,0.8351809239509269,51,2.2331455905882347,113.89042511999999,1.7804430500924626,0.6738534017389738,1.6750141425721667,0.429263437540543,0.7201555457219893,13152.734355813993,1497970.507274085,0.17435081783976364,1.3158732645367919,2.757208360173385,2.565670440191209,0.9760909291746438,8382.42589969612,954678.0492532895,14.314268255102967,3.3262527856374597,5.647058823529412,-0.013541017646252653,5089.3703780717615,579630.555951728,0.08352764589572516,0.7774128067126793,1.897229606706417,1.6855099219357592,1.000301819866664,2406.842991780922,274116.37153102184,-0.013541017646252653,"CurrentSlice","Yes",1121.3829998970032,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",7,3,"D - 7",1,1,,,,153,15,19,24,29.384354879999997,0.507069405508942,0.9148213591807167,1.268028867321738,0.5972754212133145,2.4351892645256443,0.10889540529009485,7.672868407577442,26.98542786215298,32493.09219858156,954788.5523116799,0.27971184231888013,1827.1026315314512,3560.7736095147334,29822.282681988134,8409883.716320654,9.442486690135153,9088.702681502478,52619,51.91013191489361,444.70622127659567,3.593497018432617,3.2874078266143796,115.68422650406652,53.778327644881706,3,46.7068762537168,2,46.7068762537168,2,46.7068762537168,2,0.17068419984528674,-0.6306005216564303,3.5712489311402846,5.636991133487334,16.960630416870117,1102.403564453125,0.0012743441620841622,508,0.4922179449198272,59243.514184397165,1740832.4451326397,0.22152976064553065,1588.9219552766913,6274.143255747517,54435.16026713698,15350715.195332628,9.442486690135153,13124.201517069603,65535,-2.5628516881193346,5.757790419777839,231.0245963482722,3.293637230196312,23.80434799194336,2975.039794921875,0.001108884229324758,276,0.4922179449198272,-0.3921313351233326,-0.24300122853330564,3.898194255822142,5.576144394206471,55.39655303955078,39.65804672241211,0.04031626507639885,348,134,0,49,63,173.28433391999997,18777.602525556224,65535,2,1.1982981599999998,2.3965963199999996,6.532292680454255,0.7650714565720198,2.6246814063534067,0.16153751216180756,0.552593692940535,8955.795454545456,21463.426429036364,0.10806231401986494,4.132901002750442,6.401259016451103,4.6241722601506945,1.048416931491202,7556.72764124041,18110.425656239044,4.17785333489205,2.6615534577751827,1,18435.909090909092,44183.43188312727,0.3091296589371361,2.7303209735153104,6.90274202498118,6.365538962409601,1.0613312881367283,15765.099574315669,37782.57962423849,0.40242598509983063,0.40242598509983063,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1134.5,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",7,4,"D - 7",1,1,,,,611,17,72,52,273.62877984,0.7916542061616957,0.9800499511519555,1.185705352781321,0.4690043404526846,7.185869963955198,3.521017049933453,24.636640761272627,65.90495337951438,22500.460396039605,6156773.5240065595,0.14034080896015763,12163.963737042366,3548.0510836031403,19436.49016695971,51040223.1784362,1.5944282801854548,3157.732813956187,35631,208.90974333587204,439.24794881949725,10.264257209014891,10.059484776306151,23.04366001513829,55.770557966079046,2,49.54407919056183,1,69.16208955952622,3,55.770557966079046,2,-0.04452425840238079,0.740454749791525,0.4718762344334498,7.718766956667305,371.6946105957031,516.86962890625,0.0021191604901105165,4080,-0.10788833813038773,10123.06854531607,2769962.8942915197,0.15267950674843025,2752.4902353565612,6349.027216287591,4705.822473752268,12357489.816073455,1.5944282801854548,1545.585112279407,18949,0.606319403266526,1.3594268787548334,0.5704858962081104,7.566699834858968,752.3319091796875,110.98728942871094,0.009930913336575031,4170,-0.10788833813038773,0.2175691714811349,1.177435986288251,0.46085515458804654,7.732114771303673,354.61944580078125,285.53997802734375,0.004232177045196295,4052,502,0,420,342,3785.8927867199995,9691.487628326866,57297,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,219,2.081617808219178,455.87429999999995,1.720335926046957,0.7087631806499056,1.4849252540370952,0.47677215200170003,0.6601244866918738,15158.07327073768,6910176.041646249,0.17903749540321615,1.1033943200410326,2.798114220859453,2.941187710644299,0.9685240092209212,9740.827199173877,4440592.780844351,26.970989751073876,3.192847574415009,5.534246575342466,0.07636703496751741,5753.405461335302,2622829.687302408,0.06915218987693565,0.7047837117703468,1.8777615417833355,2.004498684670588,1.0000334468363095,2689.4352322554078,1226044.4038997714,0.07636703496751741,"CurrentSlice","Yes",1147.659999847412,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",8,1,"D - 8",1,1,,,,1521,0,58,24,93.36305664,0.5690111541086245,0.5794197850709715,1.6132750377194327,0.2792596175649106,4.896117149097454,1.86976469499026,18.739089113401427,45.40796855182316,22622.16629464286,2112074.59308624,0.1666360026107247,5142.6527289448795,3454.636175625194,19763.580976749043,17708168.555167142,1.3440414017102997,3769.667361734356,30904,502.1258477678571,450.00841875,8.472945261383057,4.9093921222686765,11.592619026127515,53.665403303944345,2,50.79769285546375,1,70.01465992426547,3,53.665403303944345,2,-0.7181037532145255,0.6296088653393563,1.220703125,6.734884307246889,86.44181823730469,505.2757263183594,0.0023476197384297848,1186,-0.4273963807792305,7001.821428571428,653711.4506188799,0.3235938816668416,922.9037838059647,5209.528084225362,3402.706943100596,3048825.4210181343,1.3440414017102997,2265.7465748094987,17893,1.4522492076834728,1.739446266140999,1.4100366709183674,6.63235938763276,111.3514175415039,70.43868255615234,0.020448608323931694,848,-0.4273963807792305,0.519773883665511,3.288375446654162,1.2306680484693877,6.72773227191002,93.5820083618164,173.07513427734375,0.008124818094074726,945,1471,0,193,55,625.30323984,6828.185302449591,36914,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,2.8208385257142856,78.98347872,2.577095776665598,0.6871585988556941,1.8475179381471485,0.366815034494842,0.8188503154496347,10378.822048077374,819755.470372986,0.22834403865592198,1.660694300242806,2.88371545000176,2.7105653282865507,0.9524695825379945,6779.707562606542,535484.8879989568,16.084484262941917,3.284720188113368,3.5,0.09589289663185462,4463.752890287165,352562.7314213348,0.1128770283668418,0.842089739866755,1.561525158037271,1.53917408460563,0.9956126775052795,1605.1675723933486,126781.7187961641,0.09589289663185462,"CurrentSlice","Yes",1476.276999950409,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",8,2,"D - 8",1,1,,,,368,1,28,22,37.928741759999994,0.6365484506244468,0.7241504421610397,1.166893514384232,0.6763890616134962,2.654054825514646,2.718991142171678,9.97028822853181,27.363611586284915,40340.043956043955,1530047.1097958398,0.10216916742258257,501.6303333120785,3713.507841570827,22275.843956043955,8108407.199999999,1.6115309476717807,4121.508704779395,52040,122.79081428571429,449.53713296703296,4.299224281311035,3.113285164260864,-41.15060428019434,40.316123582032205,3,39.68406900018923,2,44.699362145544455,3,39.68406900018923,2,0.4051202976275904,-0.2523694578336029,2.8378215191402005,5.874302861684215,36.511810302734375,1626.1240234375,0.0006413586088456213,508,0.19486548287227173,9068.554945054944,343958.8786473599,0.10490198885000468,334.39476305077835,5627.291835851191,1489.5549450549443,542197.9999999998,1.6115309476717807,951.3094497318085,12447,0.5570324183882197,1.3878384051903518,3.1397174254317113,5.805245860117369,82.00273895263672,91.30684661865234,0.011789373122155666,365,0.19486548287227173,0.5173470271898104,0.17329073640338777,2.822726723825625,5.878111362676303,51.861270904541016,231.4248504638672,0.00459448853507638,346,331,0,70,58,312.70371983999996,9774.045651449516,29636,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2.3387075199999994,21.04836768,2.1267942475849053,0.7487458549120759,1.77935919937309,0.42488118428341803,0.7504003350752179,14986.156352705737,315434.1290217181,0.16032920394301442,1.290104958845035,1.9773263428824035,3.4924202859304585,0.9677024953227735,7407.156352705737,155908.5503749981,10.245191230615989,2.7706949357475126,3.3333333333333335,0.07009485207698334,26186.45991291267,551182.2364845666,0.05200580993957776,0.6898367049338536,1.449632970898942,8.820953509321312,1.0044807933847957,8122.259912912668,170960.3130395106,0.07009485207698334,"CurrentSlice","Yes",1489.4029998779297,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",8,3,"D - 8",1,1,,,,792,0,40,70,212.67187343999998,0.717599184971888,0.6686443871220639,1.357716140622,0.3412907036750574,6.779061593084785,2.4079042099133914,23.440259305732948,61.02657434496562,19112.348848603626,4064659.0354713597,0.17355640388090351,10282.625716109822,3320.0161771868457,16241.822522435217,33149559.768290278,1.2058734534755027,3317.0705358809723,33109,261.9518046055855,442.3962138167565,11.271228474426268,7.536443655395507,103.63426451917991,86.43680407721274,2,42.20291118807248,1,89.10276299667562,3,42.20291118807248,1,0.05514840752195445,-0.04985795715839281,0.5696547575294412,7.51267267296548,225.3354034423828,380.2232360839844,0.003015419701114297,2737,-0.15990970633262455,6721.207741303283,1429411.8421224,0.1581951984372594,2251.5688668696766,5573.725602741966,2464.4148010548115,5029870.608952871,1.2058734534755027,1063.262792373517,14359,0.8981694664602978,3.018820521110749,0.793867797366145,7.255585791020821,643.393798828125,51.953311920166016,0.02163960039615631,2656,-0.15990970633262455,0.45327768539288393,-0.3062047406621904,0.5720553254077785,7.508430848251952,231.9275665283203,213.5897674560547,0.006066583562642336,2913,739,0,153,213,1607.0741323199998,6175.816183621863,23467,2,1.0419983999999998,2.0839967999999995,0.6112502429043991,0.683207948920154,2.8820658395642234,0.08708601046308956,0.6705897678180138,10152.833333333332,21158.472177599993,0.14543357816533048,0.9699348167026074,2.2862051085768686,3.6021849611789096,0.9602010257412967,5711.922369026489,11903.62793889962,35.35496328429391,63.95441198123081,1,3281.25,6838.114499999999,0.081417575281891,0.5162639394196037,1.1430830541727959,1.166271945446415,1.004113921146533,410.72367383159144,855.9468219492802,0.015366117160655945,0.015366117160655945,81,1.7713972799999997,143.48317967999998,1.9307294685945289,0.7241261447101788,1.3704465242209227,0.5568462317915356,0.5818979854964014,9271.855359128944,1330355.2884608689,0.16029290833729815,1.561195216646716,2.1781316331979585,2.139287904693645,0.9652999165929177,5015.062418880472,719577.1021546421,22.877369788846806,3.4288028297685456,3.8518518518518516,0.12434606683009229,4276.82439301036,613652.3628421123,0.07570863722206674,0.9464232139139563,1.4899094824603418,1.5017539236191282,0.999556157635932,1406.2980668419514,201780.11820832035,0.12434606683009229,"CurrentSlice","Yes",1502.5230000019073,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +1,"D",8,4,"D - 8",1,1,,,,1446,0,50,37,125.66500703999999,0.7654257348198136,0.6399902440511578,1.2320888802414232,0.43478171475721883,4.964074059213733,0.8054773313741957,18.3797682596925,45.421406896701754,26870.47263681592,3376678.1330735995,0.16179466413157548,5713.252759901891,3380.957277728786,23716.576085091783,28602190.75862069,1.2429615915696337,4347.499095330321,35960,473.99727164179103,447.59753134328355,8.36073413772583,5.35078828125,-34.452973143775644,32.52177735579972,3,21.337081216566293,2,21.337081216566293,2,21.337081216566293,2,-0.590134821703755,-0.12419129277302376,0.8924421562722594,7.042903104986833,118.90428161621094,709.902587890625,0.0016034963773563504,1797,-0.10060901749150737,7622.529021558872,957885.1631567999,0.19259093736151298,1423.7982896374858,6132.553952799948,3361.460056041631,4053920.827586207,1.2429615915696337,1468.0300093273595,17315,1.0085970663745787,3.089676653652079,1.062954987362799,6.914982146204569,263.1048889160156,67.08646392822266,0.01747307740151882,1411,-0.10060901749150737,0.5092462304700494,0.8695550223821931,0.9240695362326016,7.015749028267834,119.00377655029297,271.3683776855469,0.004748312756419182,1588,1445,0,86,38,239.13863279999998,7069.242265795207,18569,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2.4313295999999998,7.293988799999999,1.0037090206099026,0.5998362645492309,1.2752164788093223,0.5111548468180368,0.6990605916965832,10242.976666666667,74712.157085328,0.1874178401118173,1.669472107173396,2.4038514160550077,2.1516976694179903,0.9644564647942162,5981.907701149426,43631.96777481766,7.179365843119122,3.0245919663250493,2,0.1597444200047977,7166.263333333333,52270.64449118399,0.2317485019992848,0.7007338430708341,2.2721935281662162,2.5099639881387197,1.0184373685034247,4012.366781609195,29266.158366549513,0.1597444200047977,"CurrentSlice","Yes",1515.646999835968,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +2,"D",8,4,"D - 8",1,1,,,,0,24,7,9,4.89739248,1.034023182419364,0.7360894546108606,1.0515650104683183,0.6981921286215051,0.9053376300936385,0.07568957170177228,2.6618769918987613,7.714756965538245,2354.3617021276596,11530.233295199998,0.031167062268682967,47.46086210594038,3380.957277728786,25.740040406591106,1209.781899109782,0.6624153498862732,73.37853777321519,2559,0.9065872340425531,443.77445106382976,1.4582169593811034,1.073378126335144,92.5160970706653,43.187089517940024,2,34.11644741225268,1,34.11644741225268,1,34.11644741225268,1,0.09494826113225074,0.5483925156608902,23.087369850611136,3.7911563523007015,16,9,0.1111111119389534,16,-0.00006651008017779135,4062.2978723404253,19894.66705152,0.02857933430396772,48.00067041915163,6132.553952799948,32.70402961045511,1537.0893916913901,0.6624153498862732,116.0977689359138,4329,-0.21145653203808681,-0.39127289060966675,23.087369850611136,3.7911563523007015,25.639999389648438,19.780000686645508,0.053050000220537186,50,-0.00006651008017779135,-0.295648090417762,-0.44906447875281863,27.61430511543685,3.6620409142529544,16,4,0.25,16,0,24,7,10,6.772989599999999,4038.846153846154,4329,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1515.646999835968,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" +3,"D",8,4,"D - 8",1,1,,,,1382,27,55,37,155.88296064,0.8212661031162772,0.8379661090385877,1.1498712321277549,0.5125394024921972,5.341140238659293,1.6401228249210114,18.00749571928312,48.83849875876771,29775.682486631016,4641521.54109264,0.1826245670441176,10238.199281004927,3380.957277728786,26821.363330569395,40124759.54253182,1.3985473553613996,5437.771122564104,55618,454.7170965240641,438.610973262032,8.185039613342285,6.85878579711914,-17.239216132750943,29.44416986513859,3,21.271656698948533,1,29.44416986513859,3,29.3778362654056,2,0.21516539119032219,1.8109160367830706,0.7193871714947525,7.2583070219258135,142.32205200195312,903.3369750976562,0.0012939049629494548,2481,-0.18889290253417834,8576.667112299465,1336956.26188896,0.29371580742644715,1487.659726731251,6132.553952799948,3869.701271710048,5789073.102478231,1.3985473553613996,2519.1027059168923,27624,2.246748608210095,8.308184325704639,0.8319869026852356,7.150200473636525,349.9335021972656,89.05239868164062,0.014617842622101307,2271,-0.18889290253417834,0.850813793975633,0.2244169569519303,0.7274300094369298,7.252397253001693,118.96969604492188,236.64169311523438,0.00980929285287857,2442,1305,0,177,121,1360.8499103999998,8619.242649310872,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,2.3090684543999997,230.90684543999998,1.9801927131879071,0.7015354744331402,1.4818798851752728,0.461913099847262,0.6751150699218634,13001.540922520144,3002144.800278194,0.20782723904614298,1.4136808321692014,2.762191475961946,2.731177294669475,0.9553835239374758,8294.575081930727,1915274.1664338533,17.33228104314667,3.2273783649377035,4.64,0.10622829040699154,5343.052509812824,1233747.4000611536,0.12455884073867562,0.7742017770798502,1.808556295906636,1.8713894204786952,1.0039554868796785,2388.7333537512027,551574.8833120017,0.10622829040699154,"CurrentSlice","Yes",1515.646999835968,"2023-01-06 DAY0 iSMR IMR90 Phall Mito Dapi" diff --git a/tests/data/in-carta/colas-lab/test-in-carta-1.csv b/tests/data/in-carta/colas-lab/test-in-carta-1.csv new file mode 100644 index 00000000..1d811850 --- /dev/null +++ b/tests/data/in-carta/colas-lab/test-in-carta-1.csv @@ -0,0 +1,145 @@ +"OBJECT ID","Row","Column","FOV","WELL LABEL","Z","T","Class Name","Class Color","Ancestry Path","Primary Target Max left border wv1","Primary Target Max top border wv1","Primary Target Max width wv1","Primary Target Max height wv1","Primary Target Area wv1","Primary Target Form Factor wv1","Primary Target Elongation wv1","Primary Target Compactness wv1","Primary Target Chord Ratio wv1","Primary Target Gyration Radius wv1","Primary Target Displacement wv1","Primary Target Diameter wv1","Primary Target Perimeter wv1","Primary Target Intensity wv1","Primary Target Total Intensity wv1","Primary Target Intensity CV wv1","Primary Target Light Flux wv1","Primary Target Global Bckg Intensity wv1","Primary Target Intensity-Bckg wv1","Primary Target Total Intensity-Bckg wv1","Primary Target Intensity/Global Bckg wv1","Primary Target Intensity SD wv1","Primary Target Max Intensity wv1","Primary Target cg X wv1","Primary Target cg Y wv1","Primary Target Major Axis wv1","Primary Target Minor Axis wv1","Primary Target Major Axis Angle wv1","Primary Target Spacing (SOI) wv1","Primary Target Neighbor Count (SOI) wv1","Primary Target Spacing (MIN) wv1","Primary Target Neighbor Count (MIN) wv1","Primary Target Spacing (Gabriel) wv1","Primary Target Neighbor Count (Gabriel) wv1","Primary Target Spacing (Lune) wv1","Primary Target Neighbor Count (Lune) wv1","Primary Target Skewness wv1","Primary Target Kurtosis wv1","Primary Target Energy wv1","Primary Target Entropy wv1","Primary Target Grey Level Non uniformity wv1","Primary Target High Grey Level Run Emphasis wv1","Primary Target Low Grey Level Run Emphasis wv1","Primary Target Run Length Non uniformity wv1","Primary Target Pearson correlation wv1","Primary Target Intensity wv3","Primary Target Total Intensity wv3","Primary Target Intensity CV wv3","Primary Target Light Flux wv3","Primary Target Global Bckg Intensity wv3","Primary Target Intensity-Bckg wv3","Primary Target Total Intensity-Bckg wv3","Primary Target Intensity/Global Bckg wv3","Primary Target Intensity SD wv3","Primary Target Max Intensity wv3","Primary Target Skewness wv3","Primary Target Kurtosis wv3","Primary Target Energy wv3","Primary Target Entropy wv3","Primary Target Grey Level Non uniformity wv3","Primary Target High Grey Level Run Emphasis wv3","Primary Target Low Grey Level Run Emphasis wv3","Primary Target Run Length Non uniformity wv3","Primary Target Pearson correlation wv3","Primary Target Skewness wv2","Primary Target Kurtosis wv2","Primary Target Energy wv2","Primary Target Entropy wv2","Primary Target Grey Level Non uniformity wv2","Primary Target High Grey Level Run Emphasis wv2","Primary Target Low Grey Level Run Emphasis wv2","Primary Target Run Length Non uniformity wv2","Cells Max left border wv3","Cells Max top border wv3","Cells Max width wv3","Cells Max height wv3","Cells Area wv3","Cells Intensity (Cell) wv3","Cells Max Intensity wv3","F Actin Org per Cell wv2","F Actin Area wv2","F Actin Total Area wv2","F Actin Form Factor wv2","F Actin Elongation wv2","F Actin Compactness wv2","F Actin Chord Ratio wv2","F Actin Gyration Radius wv2","F Actin Intensity wv2","F Actin Total Intensity wv2","F Actin Intensity CV wv2","F Actin Organelle/Cyto Intensity wv2","F Actin Organelle/Bckg Intensity wv2","F Actin Intensity/Global Bckg wv2","F Actin Intensity Spreading wv2","F Actin Intensity-Bckg wv2","F Actin Total Intensity-Bckg wv2","F Actin Distance to Nuc wv2","F Actin Spacing wv2","F Actin Neighbor Count wv2","F Actin Intensity wv1","F Actin Total Intensity wv1","F Actin Intensity CV wv1","F Actin Organelle/Cyto Intensity wv1","F Actin Organelle/Bckg Intensity wv1","F Actin Intensity/Global Bckg wv1","F Actin Intensity Spreading wv1","F Actin Intensity-Bckg wv1","F Actin Total Intensity-Bckg wv1","F Actin Pearson correlation wv1","F Actin Pearson correlation wv3","Mitochondria Org per Cell wv3","Mitochondria Area wv3","Mitochondria Total Area wv3","Mitochondria Form Factor wv3","Mitochondria Elongation wv3","Mitochondria Compactness wv3","Mitochondria Chord Ratio wv3","Mitochondria Gyration Radius wv3","Mitochondria Intensity wv3","Mitochondria Total Intensity wv3","Mitochondria Intensity CV wv3","Mitochondria Organelle/Cyto Intensity wv3","Mitochondria Organelle/Bckg Intensity wv3","Mitochondria Intensity/Global Bckg wv3","Mitochondria Intensity Spreading wv3","Mitochondria Intensity-Bckg wv3","Mitochondria Total Intensity-Bckg wv3","Mitochondria Distance to Nuc wv3","Mitochondria Spacing wv3","Mitochondria Neighbor Count wv3","Mitochondria Pearson correlation wv3","Mitochondria Intensity wv1","Mitochondria Total Intensity wv1","Mitochondria Intensity CV wv1","Mitochondria Organelle/Cyto Intensity wv1","Mitochondria Organelle/Bckg Intensity wv1","Mitochondria Intensity/Global Bckg wv1","Mitochondria Intensity Spreading wv1","Mitochondria Intensity-Bckg wv1","Mitochondria Total Intensity-Bckg wv1","Mitochondria Pearson correlation wv1","Slice Algorithm","Slice Indicator","Acquisition Time Stamp","Plate ID" +1,"C",3,1,"C - 3",1,1,,,,0,0,19,7,8.961186239999998,0.5607758054655564,0.3827259189475613,2.0870984666863617,0.15446642781377973,1.7252985960203993,5.095438735577672,5.890547234340795,14.170756965538246,16902.802325581397,151469.15961744002,0.21939206237474884,280.52018193886335,4625.098222157249,,,2.167113602643631,3708.340662122004,24531,2.4172465116279067,452.2127720930232,3.222635474395752,1.233386123371124,-7.07506926518634,87.08682609207578,4,51.82171437281697,1,76.52141306836481,2,76.52141306836481,2,0.2606096515431619,-0.8602588215384044,11.627906976744185,4.454347296253507,10.430893898010254,299.6178894042969,0.003989136312156916,123,0.7063613753813137,5838.96511627907,52324.05385583999,0.04651241872749191,145.53333168061138,2694.351190983343,,,2.167113602643631,271.58439042359055,6412,-0.16134814257627433,-0.7169263726920496,12.709572742022715,4.399903909891598,28.33333396911621,40.33333206176758,0.025321239605545998,51,0.7063613753813137,-0.8022839174425067,0.6219082248302743,11.898323418063818,4.43822759438002,19.2391300201416,640.6847534179688,0.0015817530220374465,92,0,0,93,46,229.44804767999997,3543.704813805631,12251,1,50.224322879999995,50.224322879999995,0.2017837462732459,0.49371225064905067,2.5027287190268703,0.2584180891062453,4.472743418341748,20524.31950207469,1030820.0495644799,0.27357345569033165,2.515637688777088,,8.800125584369605,0.9406759907211669,20524.31950207469,1030820.0495644799,4.978880321507547,,,8395.877593360996,421677.26710992,0.4348587170103544,2.000211159175728,,3.1792267667147116,1.0571457411930107,8395.877593360996,421677.26710992,0.5632452583844663,0.5632452583844663,5,2.2090366079999995,11.04518304,1.2357429294459705,0.6599091046952015,1.262330667059778,0.4506152273439222,0.6403086323704656,5452.552941176471,60224.445270584474,0.34219140545201265,2.372142237126284,,6.548879845667935,0.9022237522071574,5452.552941176471,60224.445270584474,11.752971760706819,3.5021870607886716,4,0.20399195622450872,4335.2764145658275,47883.92152787448,0.0637513461167727,0.9692197044270074,,1.5017267784886343,0.9960891163391569,4335.2764145658275,47883.92152787448,0.20399195622450872,"CurrentSlice","Yes",0,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",3,2,"C - 3",1,1,,,,360,0,58,26,116.70382079999999,0.6891160853910516,0.5587280078749102,1.3533347286621833,0.37187029229845137,5.013663805506635,3.3248279985673226,19.11074146128297,46.13189296562526,37510.669642857145,4377638.468087999,0.14248355616823052,6800.973584885935,6033.445990526196,,,1.6747626222619063,5344.653604965975,46656,126.5600807142857,449.4047539285714,8.753482921600341,4.8908160747528076,8.358181669825635,16.42184839701591,1,16.42184839701591,1,23.778805801690147,2,23.778805801690147,2,-1.5566920915141291,2.8626602249121493,0.9709821428571429,6.960433585990145,100.94640350341797,1367.7620849609375,0.0008539094706065953,1530,-0.14324478602384694,4530.211607142857,528693.0035860799,0.16006638854605942,1562.813108058001,2704.9872900939413,,,1.6747626222619063,725.1346113047969,7613,0.02718761256052295,2.664898230767599,1.3759566326530612,6.688512144468444,268.19085693359375,25.170124053955078,0.04854683205485344,964,-0.14324478602384694,0.6065974095712908,-0.7834948154979022,1.047512755102041,6.904873855412485,164.19285583496094,256.7705993652344,0.004206093028187752,1177,233,0,232,58,820.1569406399999,3429.2552407572102,26191,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46,1.4384108347826086,66.1668984,2.5874794851112672,0.6831610801298311,1.3385183429928056,0.517420944734565,0.4957289100606046,6272.835608456875,415054.0763846682,0.25529942959592206,1.854267455226861,,5.796903227328479,0.9479219263967147,6272.835608456875,415054.0763846682,22.33977523571842,3.0913255367226147,4.173913043478261,0.026395218710180742,5788.201404365267,382987.33424137393,0.061626177002253285,0.7286279655118768,,1.4051067395720018,0.997462274482622,5788.201404365267,382987.33424137393,0.026395218710180742,"CurrentSlice","Yes",14.5,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",3,3,"C - 3",1,1,,,,297,0,53,58,130.7707992,0.5155865293000622,0.30043847920133515,1.9352644729561295,0.14879221673259546,6.3465192709035065,4.457265711366163,24.212151904364053,56.45592662092071,41516.589641434264,5429157.6074688,0.18156727418828972,10647.616053648862,5410.41420182703,38941.9229747676,48872113.333333336,3.188393077512485,7538.054014789004,57120,104.31867155378487,443.3507531474104,12.156319171142577,3.6522260444641113,132.1515196691966,75.27800891115683,4,50.237405610601506,1,74.98336474351926,4,62.073843485146966,2,-0.7381525025120025,-0.24534885778314175,0.8577641624736115,7.082556920795844,88.22881317138672,1695.416015625,0.0006983385537751019,2041,0.18738878087165003,7721.098804780877,1009694.2614033599,0.3350167396055838,4439.974277137082,2421.6270130672565,7013.265471447544,8801648.166666668,3.188393077512485,2586.6973477502593,20938,1.024658282581119,1.8625992440609398,0.9263345026269425,7.02786758062946,220.45755004882812,75.58836364746094,0.021681202575564384,1873,0.18738878087165003,0.7705344923790106,0.15269291306762378,0.8577641624736115,7.083932293253782,113.83169555664062,303.4039306640625,0.004751114174723625,1931,204,0,189,241,3077.5422743999998,2417.788792957508,29374,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,116,1.9303918634482755,223.92545615999998,2.1132998217615544,0.7010300447000579,1.4479491460065546,0.49137114427943196,0.6111972519507428,4965.327082190133,1111863.131863027,0.3206330499825626,2.7852283513358786,7.014825169093665,5.1615984160248845,0.9453717308470955,4257.4937488568,953361.2298111074,37.98213326176068,3.6931597418500774,3.7586206896551726,0.04949809190790719,5091.880871705226,1140201.746908971,0.07167519025291647,1.0028307950254598,1.9776854758047229,1.3482305711252767,1.0008294601125776,2517.2142050385596,563668.3391156911,0.04949809190790719,"CurrentSlice","Yes",28.967000007629395,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",3,4,"C - 3",1,1,,,,1,1,12,7,6.460390079999999,0.8715129584583665,0.8413938938427739,1.2690648950887746,0.431406047254853,1.1423030775764293,3.463431547200054,3.9004072402763277,9.651556965538246,5374.080645161291,34718.65728912,0.07153866104189145,119.43061845200991,4589.234601778112,3143.1988269794724,194878.3272727273,1.5099756885217102,384.45453368598294,5921,1.9732451612903226,451.7117419354838,1.748133457946777,1.4708688171386717,-18.12449429372657,43.64529166185807,1,43.64529166185807,1,77.86985418675651,2,43.64529166185807,1,-0.8244485760570479,0.2632956373448585,17.68990634755463,4.060055625636064,18.513513565063477,30.351350784301758,0.03405405580997467,37,0.20204258293010796,3544.3225806451615,22897.70644032,0.1265693056974043,137.52501478996493,2347.2712889272466,2965.0589442815253,183833.65454545457,1.5099756885217102,448.6024481998903,4276,-0.5722614820312769,-0.10406883889034013,16.64932362122789,4.1047747985754155,17.947368621826172,15.526315689086914,0.07105263322591782,38,0.20204258293010796,-0.03229301220167263,-1.3614031809982343,16.129032258064516,4.127134385045092,13.825396537780762,96.23809814453125,0.011100715026259422,63,0,0,27,34,80.754876,1753.592258064516,7946,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",43.4229998588562,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",4,1,"C - 4",1,1,,,,350,0,83,57,379.8084168,0.6935187703716948,0.6669106603228316,1.0963418766708168,0.6122256075591704,8.140767745438739,3.224458840439811,27.032452310510045,82.95796965538246,36180.31550068587,13741588.349639999,0.14502091893599367,19594.1187258898,5590.926145322899,,,1.4215569857533157,5246.902601303641,54575,126.48499555555554,443.6595967078189,13.54557922668457,9.033691186523436,-1.9191807202705846,30.671949638697306,2,24.215909217756767,1,30.671949638697306,2,30.671949638697306,2,-0.3353432301465635,0.7043466571200114,0.33907809145323753,8.04538433302744,313.5651550292969,1314.8583984375,0.0008400270016863942,5372,-0.019016653696073468,3343.9289437585735,1270052.3580206397,0.2772883931647972,5184.873844348877,2352.3003138608256,,,1.4215569857533157,927.2326836720723,10647,0.812648895465756,2.9389000546211763,0.6168135315114942,7.543102832519448,1282.90234375,15.525386810302734,0.09197749197483063,4648,-0.019016653696073468,-0.08295360288978933,-0.6274485074515881,0.3682817095406639,7.983780282519743,391.09429931640625,342.4217529296875,0.0033529435750097036,4645,137,0,348,97,2163.5012779199997,2525.149544863459,29895,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51,1.7673110117647057,90.13286159999998,3.0864801216313453,0.7016986045921418,1.5178317536072168,0.45942352522408864,0.5630360476384256,4997.349715541834,450425.43027773144,0.23390387844216495,2.2917844349174827,,5.6168452299820295,0.9569530285010726,4997.349715541834,450425.43027773144,35.245762940343845,3.5913134515570064,3.2941176470588234,0.2344781004024362,6841.409289136001,616635.7966066494,0.053840265712484785,0.8809933297727289,,1.8283646773083446,0.9980098016981819,6841.409289136001,616635.7966066494,0.2344781004024362,"CurrentSlice","Yes",647.4499998092651,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",4,2,"C - 4",1,1,,,,356,0,58,20,78.46247951999999,0.519109354570735,0.42072146782755454,1.8390123668291785,0.20587853921948018,4.792183140578959,0.7298725934969222,18.410922831840885,43.58193600008701,25157.49003984064,1973919.0470255997,0.20951011407074907,2941.407008482749,5255.228521061166,,,1.3920837116715838,5270.748607980746,33860,125.79683187250996,450.57907250996016,8.834223557281494,3.71674750213623,7.074098762794419,31.06478216104753,3,26.555140088855858,2,26.555140088855858,2,26.555140088855858,2,-0.7101663546175648,-0.34555293083359473,1.395039584909587,6.591377976237387,50.84804916381836,588.6509399414062,0.0021841407287865877,974,0.3792862931290867,3363.7277556440904,263926.42013807996,0.1925328793936443,796.027285358488,2416.3257765619564,,,1.3920837116715838,647.6281902904775,5398,-0.19913965535311481,0.2844903269799999,1.8218405704318628,6.389731381758287,132.24887084960938,14.119909286499023,0.09385558217763901,442,0.3792862931290867,0.14222327488325145,-1.2663644958480753,1.4796943258396251,6.547193295404881,86.39800262451172,405.4507751464844,0.00261280732229352,701,326,0,126,44,286.34116032,3231.731077147016,12696,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,2.7352457999999995,10.940983199999998,1.1291373304480488,0.850049766963204,1.336065934481483,0.5546927760919883,0.7226890609065376,6927.951302083333,75798.59880651187,0.20222594817654765,1.4230440237705058,,6.914654087195871,0.9309444747424084,6927.951302083333,75798.59880651187,15.763323329695167,3.450539186497195,3,0.10001373901123785,7052.25234375,77158.57441512936,0.06019104275645172,0.7626339304057685,,1.8053662140828195,0.9964621555350082,7052.25234375,77158.57441512936,0.10001373901123785,"CurrentSlice","Yes",662.5329999923706,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",4,3,"C - 4",1,1,,,,135,0,63,44,181.51612128,0.6880601511452724,0.7717238382387556,1.3342119447026126,0.39480046191987905,6.208405276009529,3.0167779712545917,23.029919357218773,57.57703944843789,49256.83524684271,8940909.680534879,0.18038669078709446,14082.861742729994,5422.035522767316,,,2.2458165747724763,8885.277508823072,65535,54.91491389207806,447.20196854190584,9.830018778991699,7.586059822082519,28.69030309434887,50.600443316240224,4,39.390513094095034,1,46.015265194129874,2,46.015265194129874,2,-0.6231890565478889,0.08088167108386335,0.6122790621651084,7.422893538511088,91.93871307373047,2374.1064453125,0.0005026786820963025,2725,0.14782825154535562,5159.692881745121,936567.4388903999,0.4414952508558934,3338.508112363303,2297.4685197823196,,,2.2458165747724763,2277.9799031654297,15729,0.7852990956725132,1.5002275753967869,0.7197080041811608,7.294452813855047,238.7386016845703,39.47315216064453,0.05938800051808357,1974,0.14782825154535562,1.505011445595649,4.203921844974329,0.7309122496674976,7.284392147599277,202.41015625,71.30421447753906,0.020752253010869026,1614,117,0,129,172,1110.14509536,3095.7150366059695,19850,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47,2.3123496408510635,108.68043311999999,2.969458342035807,0.6374904672276228,1.8811234330125708,0.35764145055855057,0.7474686039331415,5303.985942126013,576439.4894526462,0.25003832813363647,2.6749803978608675,,6.242661896420966,0.9673887317873071,5303.985942126013,576439.4894526462,26.65086265302377,3.696442801816899,3.6595744680851063,0.0624556834454919,6055.520412130377,658116.5811573302,0.06824311094279162,0.9798179999679889,,1.661522766125456,0.9953172751317166,6055.520412130377,658116.5811573302,0.0624556834454919,"CurrentSlice","Yes",677.6699998378754,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",4,4,"C - 4",1,1,,,,1017,0,34,24,56.16371375999999,0.7196908517433439,0.8311272562346425,1.2025978506177226,0.5782885397992933,3.278673747881941,5.330035624825082,11.851640575042763,31.315536000087018,32522.493506493505,1826584.0160601598,0.23896859963388112,2876.7472940593457,4658.928005153954,29695.493506493505,16005871,2.7826835528922396,7771.854729848745,46602,334.58609276437846,449.8771970315398,5.041768394851684,4.190351132583618,28.926512625200665,19.47501331746931,2,16.324982970065985,1,16.324982970065985,1,16.324982970065985,1,-0.16749449008350348,-0.9236568701641104,1.8897084892314153,6.276855697429221,32.258174896240234,1039.9334716796875,0.0012416165554895997,887,0.38358514439711816,6167.981447124304,346416.74447328,0.39534707068464336,1031.8284197853034,2216.558703095609,5466.731447124304,2946568.25,2.7826835528922396,2438.493397157821,17117,0.8657102789783342,1.133927099928962,2.054928903590446,6.216729503645322,67.02468872070312,49.7760124206543,0.04106254130601883,567,0.38358514439711816,0.6704304336824837,0.7139057061117522,2.0136238000006883,6.236964948578133,38.52290725708008,338.6034851074219,0.004141080193221569,633,996,0,167,88,642.4962134399999,3479.5144339928643,28550,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26,2.8815263446153843,74.91968496,1.6291807158124714,0.7328340876142101,1.6300093371563018,0.48671948936611015,0.8036705703291603,6552.953168378794,490945.186932573,0.28451058693612746,2.336448723306153,9.344674749916283,6.920259864286643,0.9435491515438823,5851.703168378794,438407.75785437296,16.462574634368664,3.7645918018928004,3.923076923076923,0.1342287522849133,7191.73090570564,538802.213772562,0.08097283587646299,0.9648914451498255,2.543944430741295,2.07982041798843,0.9986804506654783,4364.73090570564,327004.264390642,0.1342287522849133,"CurrentSlice","Yes",692.710000038147,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",5,1,"C - 5",1,1,,,,106,0,72,43,135.87659136,0.4394842894574688,0.7696004212534971,2.1644654567339003,0.12814875067169318,6.84160038881481,3.360242563595663,25.145270511967055,62.33121268984421,35299.48542944785,4796373.75691536,0.17100845605252601,8446.724596763133,5318.729363319004,32424.03880635417,42280946.60348584,1.617147323979601,6036.510502738515,44763,44.9276208588957,446.14945490797544,10.843691853332519,8.345309818267822,-26.769801110499767,7.098616305559317,1,7.098616305559317,1,7.098616305559317,1,7.098616305559317,1,-1.0349532268106003,0.23074317972141456,0.8433230456547104,7.105413336782549,129.45774841308594,1224.364990234375,0.0009567467495799065,2071,-0.26175141917113576,3855.2078220858893,523832.4978494399,0.48376783723984657,2076.0026471037904,2383.955849241179,3250.1533558549527,4238199.976034858,1.617147323979601,1865.0255502006298,20907,4.327368335124042,27.564410491235986,1.0456264819902894,6.942314801867961,332.4446716308594,24.838966369628906,0.07975058257579803,1509,-0.26175141917113576,1.0133344823763595,0.7503231946441233,0.8256803041138169,7.121359974372118,116.1513442993164,229.34024047851562,0.006866707932204008,1784,0,0,203,125,1490.4745113599997,2552.2674776286353,22807,3,0.20839967999999998,0.6251990399999999,8.843001543437936,0.6666666666666666,2.7488935194219413,0,0.2724698365008337,12271.166666666666,7671.921619679999,0.011297042710738054,1.8127403836558071,3.2293154841250864,4.014456060302832,1.0049373810239455,8471.238562091503,5296.210216630588,32.75455919789321,19.202072153598536,2,4107.25,2567.84875704,0.021328160017897103,0.9547922729520315,1.4283867998151278,1.3344537290489,1.010348075111957,1231.8033769063181,770.1222887105882,0.1319727330005854,0.1319727330005854,33,2.901807665454545,95.75965295999998,1.2351943678091537,0.6101825629729876,1.7456740390560401,0.4016845256056183,0.8534098136578285,5664.36989570602,542418.0954498798,0.2604254645218591,3.1505185354268495,9.361752060093126,6.619801668146981,0.9491650390067358,5059.315429475083,484478.28974170727,25.777258096170318,5.0400714086418095,4,0.11225708910041482,7255.096938773744,694745.5650481321,0.12033107191574442,1.1667168180944545,2.523120019166975,1.9370277174804849,1.0043415132497557,4379.650315680063,419393.7943156772,0.11225708910041482,"CurrentSlice","Yes",707.7300000190735,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",5,2,"C - 5",1,1,,,,280,0,50,15,52.725119039999996,0.5074357284669024,0.3614642155673753,1.7222240898940266,0.23103770405812096,3.801576004073778,3.1641989845329546,15.83037002726089,36.13459531041684,45687.476284584984,2408877.6257419195,0.21086179110410838,2588.361964891238,6309.374904978632,,,1.1349677664772468,9633.743080394064,61430,98.75510988142292,451.04473992094853,7.15058138809204,2.584679292297363,-0.2220563651924133,26.539936787432556,5,15.730135852286411,1,16.10301502549357,2,16.10301502549357,2,-0.5638867230881489,-0.26560373310966723,1.9997187895452202,6.2183175327590865,27.254005432128906,2028.028564453125,0.0006228584097698331,874,-0.2687776514088029,3002.883399209486,158327.38468656,0.29675629715203106,668.4024216117758,2645.787385248783,,,1.1349677664772468,891.1245583287113,5719,1.1536237015391941,1.0874089113802219,2.4996484869315254,6.056983502516682,70.79844665527344,12.817829132080078,0.11829026788473129,258,-0.2687776514088029,0.7293851788283435,-0.7121970108310283,2.2653064412816946,6.131989818512733,60.96438980102539,228.43026733398438,0.00459907716140151,337,245,0,86,79,366.78343679999995,2378.1517045454543,13443,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,1.3055627011764703,22.19456592,2.0529688339011223,0.7429834751338069,1.2057692468235406,0.5923300747428715,0.48011186443327614,4022.507385750998,89277.80533673738,0.21552793328807687,2.228231737549061,,3.888163988462598,0.9787203693679414,4022.507385750998,89277.80533673738,17.38173849887045,2.898151991966632,3.2941176470588234,0.07493715952878266,7935.183617005984,176117.95587494332,0.053755959777356706,0.9320148645356847,,1.7365517274422562,1.0013860600007602,7935.183617005984,176117.95587494332,0.07493715952878266,"CurrentSlice","Yes",722.7999999523163,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",5,3,"C - 5",1,1,,,,133,0,56,69,300.82493808,0.8232522984487901,0.938967768454874,1.0739746496441807,0.6533339465233894,7.170740287273407,0.6516696936664036,23.402443441657965,67.76342896571228,39263.86006234846,11811548.27203776,0.08754589347458731,9370.604105479893,5272.863853382745,33534.96817045657,96815453.1081081,1.9065710771207385,3437.3897104194616,54262,51.61389747142362,442.10406234845857,10.454994323730467,9.816902689361571,70.11309718473086,22.03556234608949,3,19.7812047668671,1,29.59525371600739,3,19.94532748662461,2,-0.5542396115160598,3.001163118021111,0.4375646163678921,7.794471111528228,399.89825439453125,1512.173828125,0.0006878594867885113,4217,-0.0034129895924205267,4460.956702459301,1341967.0237948801,0.39707049013703727,2403.637899137511,2339.7799095935825,2318.470215972814,6693423.513513514,1.9065710771207385,1771.314264325616,14863,1.5077674935873104,3.2056875281508663,0.5695418793250299,7.5938451261876665,657.7420043945312,29.009262084960938,0.061003558337688446,3779,-0.0034129895924205267,0.630070003965032,1.046769999042417,0.4051701972784129,7.85451302329598,234.29080200195312,401.2594299316406,0.0032263919711112976,3982,109,0,80,88,542.5685668799999,4860.654695602074,21791,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,3.7511942399999993,63.77030207999999,2.3459668800217393,0.6721187946873514,2.2592179848164555,0.34019884898937613,1.03763550388282,7476.49504530922,476778.3475389922,0.24837296622564403,1.5769166916198272,3.489634633621469,8.396850706160516,0.9899726519446621,5334.008558822733,340151.3370934311,14.057386965151496,3.927966009982927,4.117647058823529,-0.028859768943986164,10958.677845138714,698838.1965818992,0.10508464669233666,0.686415659627098,1.9128791486968966,2.9383492107808937,1.0029572946601037,5229.785953246823,333505.0300522906,-0.028859768943986164,"CurrentSlice","Yes",737.8069999217987,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",5,4,"C - 5",1,1,,,,377,0,38,75,138.58578719999997,0.49093415791601075,0.9902272426059493,2.171208550889586,0.11436480672099225,6.92022439764956,0.9551854931837734,25.476671748091427,59.559720827778236,47784.936090225565,6622312.984365599,0.1550696995813835,5658.903666318732,5526.463465856993,,,1.4519000037895406,7409.995684026889,65535,127.87782676691728,440.72126706766915,9.834623540496825,9.73851215057373,112.34116265246621,30.45056368647088,4,24.59087407033198,2,23.56526131879299,3,23.56526131879299,3,-0.5762874900832837,0.7479914721361203,0.7925829611623043,7.1554104640727045,95.67601776123047,2253.94091796875,0.000500391295645386,2281,-0.44715205076365994,3420.4849624060153,474030.60112079995,0.4761450126927256,1605.382065477493,2355.8681406972637,,,1.4519000037895406,1628.646855840089,8680,0.6211796577083047,-0.3178227230850257,0.925999208547685,7.042149530725473,293.5719299316406,18.416118621826172,0.12073065340518951,1675,-0.44715205076365994,1.2724965609326166,1.13501892549992,0.8378088077336198,7.1143663075107195,168.55258178710938,171.11427307128906,0.008882662281394005,1864,354,0,95,145,600.50367792,2969.1551275377406,9314,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34,1.9522146494117645,66.37529808,2.316327297051453,0.6640759023395919,1.283370081893287,0.46459470927460095,0.5810771807512699,4259.793924265796,282745.0914825151,0.21448084003934764,1.5753197326018806,,4.312067124089563,0.9774421235618659,4259.793924265796,282745.0914825151,15.301171753671836,3.1963500897593424,4.235294117647059,-0.09363652148985163,12195.527955189837,809481.8032686983,0.07598114663255212,0.8513966385300514,,3.0179541837719013,0.9914768548849078,12195.527955189837,809481.8032686983,-0.09363652148985163,"CurrentSlice","Yes",752.7999999523163,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",6,1,"C - 6",1,1,,,,135,0,89,32,250.49641535999996,0.6303858074135235,0.3859121132641256,1.5461293713329356,0.2592466889881436,7.8511584427815,8.876087625482931,28.40823403170285,70.66469296562526,30092.07570715474,7537957.095383999,0.12361022992422156,19622.9340947268,4359.554405789798,27324.86929432909,65688985.78356714,2.1950486160861713,3719.68839705848,39335,57.69042928452579,448.34516455906817,14.649351457214355,5.65336217880249,0.027976455118293348,69.65932912148259,1,69.65932912148259,1,102.69940939667754,2,69.65932912148259,1,-0.2861147685351134,0.9240066803981559,0.5004138969714923,7.6496452520682645,238.81683349609375,886.058349609375,0.0012192775029689074,2981,-0.22149753973931305,5404.3207154742095,1353762.96668208,0.19325977772047837,5232.148198131709,2462.0505786838808,4706.8858457347305,11315353.573146293,2.1950486160861713,1044.4378202027224,11247,0.47576550629959985,1.7475950392519861,0.696980351660156,7.384283098718824,570.0701293945312,34.7630500793457,0.035101547837257385,2452,-0.22149753973931305,1.9054730387697647,4.574095422349713,0.7263961063230723,7.349501990866669,371.1664733886719,36.78230667114258,0.0352829210460186,1718,0,0,459,537,16926.95140848,2526.337685522047,60301,17,3.3895595011764703,57.622511519999996,3.3548728914230215,0.581325973476062,2.6801832546076416,0.1655958828923687,0.9620228059219458,8573.066732112042,494001.63653285487,0.11814460701626137,1.360328810801875,1.4907177044141782,3.904579805932467,0.9970728188493319,2822.100800248314,162616.53587290968,62.94154729200608,21.24038938142184,3.411764705882353,3861.534152451751,222511.29618452443,0.05374265327055653,0.9313839761865439,1.3954629963829333,1.4317936145920016,1.004015037404864,1094.3277396261,63057.91278326051,0.016058963320943812,0.016058963320943812,1265,1.5387804039841897,1946.5572110399999,2.3626027245973162,0.6954029075327938,1.485368628809892,0.4563437000303341,0.5501029794696567,5387.863996374675,10487785.514245914,0.3424194480046535,2.4237665893654996,7.7252575547122655,7.937943416809319,0.9363646012179344,4690.429126635196,9130188.639323788,89.38741065143813,3.001026796289551,5.027667984189724,0.04168207059331059,3792.5673534604693,7382449.330233364,0.06659871160125419,0.7814663263332882,1.370540099893669,1.3024367691952012,0.9995645724378199,1025.3609406348182,1995923.7329114627,0.04168207059331059,"CurrentSlice","Yes",1361.5230000019073,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",6,2,"C - 6",1,1,,,,1168,0,56,26,98.46884879999999,0.574758885968054,0.736992428974928,1.4613380586918177,0.33690749170338385,4.7855829679461435,1.7904645615696337,18.680611985692547,46.399309241493334,25864.72380952381,2546869.57805376,0.1740757086494366,5138.003482694422,5324.797146192595,,,1.5526522737236426,4502.420126164813,34938,387.78835047619043,449.57978539682534,7.702428714752196,5.676631647491455,15.869488923869755,51.77195227688835,6,34.49881152968552,1,35.987391033547524,2,35.987391033547524,2,-1.1480880740597066,0.7594645635399133,1.1679404271996865,6.784063506818691,86.10384368896484,640.55517578125,0.0019182120449841022,1223,-0.20527183432516488,4056.1555555555556,399404.96810927993,0.24317798699300353,2443.7705041123645,2612.404351057881,,,1.5526522737236426,986.3677429304879,8848,0.4013205128401275,1.7222430159836053,1.3672629545645418,6.660614534891706,178.60714721679688,21.95153045654297,0.06762675940990448,784,-0.20527183432516488,0.04392997904058355,-0.19423706006503139,1.185857058872932,6.768480448799058,111.68526458740234,376.7265625,0.0028000008314847946,896,1137,0,88,60,255.60220751999998,2526.8540562576436,8848,1,19.58956992,19.58956992,0.3548206609735701,0.7396161222682742,3.3520601070307734,0.0572783908658927,3.2327967891078266,12520.38829787234,245269.02198671998,0.22069070594030746,2.500376913743863,,4.6275518146529,0.954615595561142,12520.38829787234,245269.02198671998,17.235192206854048,,,4262.803191489362,83506.48117487998,0.0971277388449333,1.1148476077928533,,1.4227976025612996,0.9966096964119743,4262.803191489362,83506.48117487998,0.05472844217328405,0.05472844217328405,7,0.803827337142857,5.6267913599999995,3.0832284104848626,0.6717479732137066,1.5599420062362028,0.4075154450002184,0.39948786707364825,3166.9115646258506,17819.550629720816,0.25055898173974755,1.7755526028636848,,3.2084173663640017,0.9918871106527991,3166.9115646258506,17819.550629720816,15.261925977889842,8.42421974979437,4.285714285714286,0.05354847965977573,5406.533673469389,30421.436961426614,0.08409639494839827,0.9090563505064122,,1.347886619512968,0.9907746041978835,5406.533673469389,30421.436961426614,0.05354847965977573,"CurrentSlice","Yes",1376.646999835968,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",6,3,"C - 6",1,1,,,,1465,0,25,62,142.54538111999997,0.6671143135715978,0.3826337134954142,1.5452564405914264,0.2546339189501773,5.92088928154961,0.24605384449377993,20.202741726805296,51.818087172482805,41563.98026315789,5924753.407476,0.15303412094909188,6694.375145687809,5908.204090296518,38467.58552631579,52623656.99999999,1.602788716903964,6360.707182717772,63544,476.78031929824556,442.9750421052632,11.057327174377441,4.230906158065795,89.07130600518856,46.233220841309425,7,38.37373686655011,1,42.753476446327326,4,41.992100740041714,2,-0.001960697827858766,0.4949602998684335,0.7726736431722582,7.181583548413726,106.69068908691406,1729.4266357421875,0.0006418621051125228,2276,-0.4026729187697715,4131.975877192983,588994.07619312,0.4843276221031074,1824.7944153297735,2577.991617743939,3517.3706140350882,4811763.000000001,1.602788716903964,2001.2300511882788,12850,1.1099491531161496,1.423850899431092,0.8891624773434561,7.0793273462672,256.5006103515625,25.479494094848633,0.0946405678987503,1658,-0.4026729187697715,0.3926109167191404,-0.5985772930937832,0.766261413768339,7.187663786839691,66.8760757446289,665.5774536132812,0.003097012871876359,1969,1403,0,142,96,872.3610604799999,3266.646321070234,12850,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,2.141306712,42.826134239999995,4.184040096360475,0.7977328002101404,2.120831097225463,0.4104162622054683,0.7119413266261663,5013.005011834372,214687.6255826116,0.1903039133525008,1.8248861880791214,8.156462875174745,4.536171297368699,0.9672838252727182,4398.399748676477,188366.45807800107,10.996890231825645,3.97205254564552,3.5,0.1803733716181633,9821.097706850738,420599.64877774584,0.08351698845602248,0.9374180458753886,3.171784782474763,2.119711215433896,1.007209556866504,6724.702970008633,287993.0321177164,0.1803733716181633,"CurrentSlice","Yes",1391.6369998455048,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",3,1,"C - 3",1,1,,,,292,0,63,9,44.805931199999996,0.3110671541886044,0.14848197188876167,3.7302543630626723,0.039194410566247395,5.157592747256845,7.441519269293758,20.01620305652398,42.54471393107649,28879.49534883721,1293972.68169072,0.2863262160455541,3124.974980904661,4625.098222157249,26218.03482252142,11273754.97368421,2.382580757775191,8268.956624537737,44075,103.63756744186045,451.8126502325581,10.203306150054932,1.515007016944885,-1.299051475391789,81.92127846252306,3,60.832262761612014,1,81.92127846252306,3,81.02668726276232,2,-0.002280316260449197,-1.129579974511833,2.347214710654408,6.057337327938213,24.87270164489746,845.8585815429688,0.0016884210053831339,707,-0.6973180089999299,6419.509302325581,287632.09213775996,0.1079216146085886,995.1919497195829,2694.351190983343,5710.775749694002,2455633.572368421,2.382580757775191,692.8038089018308,8640,0.8694128905149553,0.17549852602454807,2.920497566252028,5.8965039092112885,67.79412078857422,49.906864166259766,0.021172260865569115,204,-0.6973180089999299,1.3872274587543356,1.5303697636373954,2.920497566252028,5.8924897407584735,90.20164489746094,48.407405853271484,0.021768711507320404,243,0,0,502,95,2336.681412,2843.633221850613,24055,1,2.5007961599999997,2.5007961599999997,0.7360151825781799,0.3170516596763246,1.9521326805918828,0.13762043759652098,0.8814625559256613,6566.375,16421.16538512,0.1564732183082587,1.1679265418649116,2.87350507568909,2.8154368103762857,0.9543282840951928,4281.230263157895,10706.484202181053,32.88101556067198,,,3120.1666666666665,7802.900818559999,0.06738106927771625,0.9604206746184429,1.17235128449786,1.181498571527729,0.9990933839554715,458.7061403508769,1147.130554357894,0.2796741681700725,0.2796741681700725,120,1.9685086439999997,236.22103727999996,2.102882460363919,0.63864501875642,1.5384217666529671,0.4152246783165304,0.6450136287495217,5508.2748690628605,1301170.4031933849,0.3149680143374733,2.3034302236759885,7.771996751967277,6.615805598509539,0.9416480387325182,4799.541316431281,1133752.6282356137,48.61749572301921,3.3807620432515777,4.766666666666667,0.09103330407574235,4048.2122875154487,956272.9056865408,0.07056612020755278,0.8172642335304016,1.5210491560884856,1.4022886237987469,0.9976753098291729,1386.751761199659,327579.9394804503,0.09103330407574235,"CurrentSlice","Yes",0,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",3,2,"C - 3",1,1,,,,699,0,29,34,78.25407983999999,0.772527109428012,0.7436902181857797,1.1161365378868242,0.6645032797375305,3.7283975456208642,0.7186590889686945,12.08669415845375,35.678087172482805,43316.407456724366,3389685.6075004796,0.20399744385388574,5764.857722428663,6033.445990526196,40276.87804495966,30247935.411764704,1.9991006848267923,8836.436398105167,60154,229.68745885486015,447.9531275632489,5.9849345603942865,4.450937289047241,97.68957400960468,34.54904914293016,3,29.47243864434684,1,47.86691032766522,2,29.47243864434684,1,-0.4953349088203148,-0.5462212419163457,1.3563805737933088,6.608484133085255,40.6039924621582,1841.183837890625,0.0006675344775430858,1202,-0.00841512827145643,5407.541944074567,423162.21902975993,0.2579993613583057,1315.6016012349078,2704.9872900939413,4661.424297015744,3500729.6470588236,1.9991006848267923,1395.142368089489,11351,0.49948141212006947,1.0730988548338756,1.5478695959758937,6.509953042162326,157.611572265625,36.697757720947266,0.03756605088710785,847,-0.00841512827145643,3.173761776944448,16.93918721732348,1.8280109432430083,6.3901396100236685,141.84149169921875,41.69080352783203,0.029456857591867447,511,603,0,192,63,804.00596544,3312.722913426646,18881,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,2.8133956799999997,78.77507904,2.1352516021272345,0.7536139844382427,1.5475952324102902,0.5186018235310788,0.7283307397749498,5677.212018503681,447222.82548446534,0.2753282082603424,1.9456795680840695,7.6090038090951255,5.2464707711968845,0.9474143144849533,4931.094371444858,388447.3488642677,15.501662261473511,3.4272030048817093,3.5714285714285716,0.16887849218640355,6193.811552761739,487917.99462767114,0.09123295454028364,0.8057344944446012,2.037753452487799,1.5035700640722283,1.0091108178928767,3154.2821409970334,248478.8249715017,0.16887849218640355,"CurrentSlice","Yes",14.5,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",3,3,"C - 3",1,1,,,,1296,2,4,1,0.41679935999999995,1.3962634015954636,0,1.9634954661505089,0,0.360901371568466,8.134870751126988,0.9683999999999999,1.9367999999999999,13789.75,5747.558974559999,0.06487031758077182,9.394570099004037,5410.41420182703,11193.817708333334,44775.270833333336,2.0020630649718263,894.5454618594481,14610,418.83299999999997,452.2428,0.7218027537345886,0,0,35.284072492233655,2,33.14032315770246,1,35.284072492233655,2,35.284072492233655,2,-0.7406726213441349,-0.9397155818467171,250,1.3862943611198906,2.4285714626312256,196.57142639160156,0.0051470473408699036,7,0.891121009659651,4848.25,2020.7474971199997,0.04485870292562644,9.198884482097736,2421.6270130672565,4284.807291666667,17139.229166666668,2.0020630649718263,217.48620645916836,5136,0.45384584866808964,-1.1448561441694953,250,1.3862943611198906,3.3333332538604736,28.66666603088379,0.03592592477798462,6,0.891121009659651,-0.4364817889985926,-1.3268981893635903,250,1.3862943611198906,2.4285714626312256,570.7142944335938,0.0017720648320391774,7,1262,0,78,29,139.41938592,2116.381913303438,9219,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,0.9117485999999999,3.6469943999999996,3.0577441479778478,0.7022071428127704,0.8955353319454654,0.6885971733863061,0.34154267321181353,4858.556186868687,17719.127205595454,0.24684918593526958,2.890553067933472,8.622981742438949,5.050607040220967,0.9723745850137868,4295.113478535354,15664.254803582953,5.9218465978828085,3.1314567155806925,3,0.02120676928759435,5757.866161616162,20998.905647363634,0.07397557932824614,1.1384941061079088,2.2180340296623986,1.524570464064868,1.0001963739966495,3161.933869949495,11531.555116876136,0.02120676928759435,"CurrentSlice","Yes",28.967000007629395,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",3,4,"C - 3",1,1,,,,345,1,16,21,22.507165439999998,0.5548791187565404,0.7353601292158318,1.4472929368773209,0.4880987170914818,2.2769247856426955,5.205070285424293,6.840009368414637,22.57699531041684,8402.12037037037,189107.91322271997,0.14989418820705377,548.8013423295764,4589.234601778112,5932.419367635639,1281402.583409298,3.7212259584378122,1259.4290121346166,11455,114.04404444444444,449.4108277777778,3.668541886138916,2.6976994354248043,103.59980930851643,34.271601600880956,2,26.614225649897,1,67.05755740667652,3,26.614225649897,1,0.08021199763930922,-0.9076523996647508,4.758230452674897,5.356024319335279,40.971290588378906,78.511962890625,0.014127541333436966,209,0.6211948217216473,8734.726851851852,196593.94232784,0.3795323706962942,1193.3852102594176,2347.2712889272466,8052.656660420676,1739373.8386508662,3.7212259584378122,3315.111589467912,19576,0.9457781490712532,0.7918415747239336,4.715363511659808,5.362442348784907,28.625417709350586,99.966552734375,0.018880007788538933,299,0.6211948217216473,-0.4036006107115511,-1.1000333226451886,5.701303155006858,5.286544386907004,12.31847095489502,2676.961669921875,0.00043582788202911615,314,305,0,116,122,695.5339319999999,1812.458127340824,19576,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,1.1759696228571428,8.231787359999998,3.2291465723486645,0.7984231274400638,1.4529766412296288,0.5535644896314008,0.45179561314388994,4933.801721565819,40614.00664833174,0.3098892609064881,3.0864929889691006,7.233568895912765,5.191360621414462,0.8775517169448842,4251.731530134643,34999.34986787581,12.425167540987868,5.4112790273357785,3.142857142857143,-0.08938072709299368,3488.3793262919203,28715.59684505514,0.04683944099898407,0.9615849537653942,1.4124703040688706,1.112148888186088,1.0017920173033459,1018.6783235571893,8385.54334776406,-0.08938072709299368,"CurrentSlice","Yes",43.4229998588562,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",4,1,"C - 4",1,1,,,,782,0,73,50,187.03871279999998,0.41100961678179176,0.7476456499116955,1.8630214104295657,0.34707337395935556,7.44705814897302,0.9289944847275018,26.962979873893758,75.62139641397614,32967.15487465181,6166134.212433119,0.1367493041349617,6062.162696369364,5590.926145322899,,,1.348467514293218,4508.235488418145,43635,260.8587262395543,447.1544289693593,11.929026567077635,8.91868482055664,-28.918900447854053,44.608507520039325,4,31.72084040635773,1,45.60011023806114,3,46.00924961262971,2,-0.8642000294646676,0.5598983348499753,0.630969654177109,7.403259577865839,167.82371520996094,1048.171875,0.0010536626214161515,2479,-0.13833828216531188,3172.0005571030642,593286.9012014399,0.30987238060292815,1763.000497913024,2352.3003138608256,,,1.348467514293218,982.9153639033408,10402,2.4660232691730255,10.153772084227024,1.0859630201503714,6.983351466363166,492.9232177734375,15.235085487365723,0.10016561299562454,1693,-0.13833828216531188,4.7622460602729,26.517350954878598,0.6762827724800398,7.353005841370802,171.61041259765625,378.3005065917969,0.004292842000722885,1920,689,0,201,76,948.4269436799999,3218.220171390903,22191,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42,1.9698731657142856,82.73467296,2.477402588520787,0.6697093501230267,1.5579728489145512,0.4327803796223161,0.637049511679242,5715.64340315482,472881.8877159954,0.22929687867917575,1.677100695525392,,6.4241820590311765,0.9693704329861775,5715.64340315482,472881.8877159954,13.873213248236203,3.309441271385677,4.333333333333333,0.11339663509439663,10558.054408998583,873517.1786223837,0.07830737949805607,0.7963693851332765,,2.8216370234078676,0.9962885410338702,10558.054408998583,873517.1786223837,0.11339663509439663,"CurrentSlice","Yes",647.4499998092651,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",4,2,"C - 4",1,1,,,,559,0,59,30,129.52040111999997,0.6468385603294423,0.7446145281881351,1.328364735527326,0.40523862788782794,5.232844246732328,1.3975883823266109,19.80424696270979,50.162141793229466,25739.3049074819,3333765.0961670396,0.14301450784393627,5070.727488343057,5255.228521061166,21752.3049074819,27038115,1.3215053535793573,3681.0940235885373,31234,191.44922606596938,448.9332559935639,8.394629837036133,6.250763335418701,15.297633392357591,35.06064244026251,3,28.234513287123228,1,43.96789671885146,3,39.19356679076109,2,-1.49261672357093,1.8404767006258735,0.9210063887941418,7.031156722609189,130.27259826660156,633.6536865234375,0.0018312640022486448,1438,0.3529661921550833,3193.187449718423,413582.91933887993,0.20975712977642214,1944.479114886769,2416.3257765619564,2582.187449718423,3209659,1.3215053535793573,669.7938342910297,5555,-0.036691102792264306,0.5886600882720825,1.3274659897517813,6.743249500588467,309.415771484375,13.656400680541992,0.09837798029184341,1039,0.3529661921550833,2.3017934328319583,9.120816436151571,1.084108012108354,6.9064968091429035,204.6656951904297,172.99217224121094,0.006212832871824503,1023,495,0,143,82,730.4408783999999,2245.4941512125533,16533,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,1.4457727799999998,34.698546719999996,2.7390321021971977,0.7789530399927979,1.3400149734087943,0.5323316275404143,0.4885261981869196,4463.389181650208,154873.1180490323,0.29755124535356664,2.6047057159096534,7.305055943781028,4.454822342409157,0.9283790144513979,3852.3891816502082,133672.3060031123,13.991297732019417,3.7298126042245965,2.75,0.06815774650367756,6380.9452656573385,221409.52741817394,0.08827763776902747,0.9824029933609782,1.6004377390663,1.633512590731234,0.9897233425365776,2393.9452656573385,83066.42164553396,0.06815774650367756,"CurrentSlice","Yes",662.5329999923706,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",4,3,"C - 4",1,1,,,,658,0,56,59,202.35608927999996,0.6935577346661653,0.49485159723453254,1.3618738752620625,0.3304337549123382,6.622723808469943,1.1257876982790216,24.26374035469387,60.55106151744841,33291.55664263646,6736749.20824752,0.1373744751714327,8045.880631489221,5422.035522767316,,,1.813503207324011,4573.410121422207,43342,221.42318063851698,443.8491688980433,11.871476591491698,5.874619152832031,51.26213438827815,20.78471056318439,2,14.693585702252777,1,34.81536325566162,4,26.63930822541579,2,-1.0071377989321946,0.8806475647545904,0.5865251935374045,7.477326116583295,194.7372589111328,1081.269775390625,0.0010277467081323266,2824,-0.028183717624307363,4166.466529351184,843109.8729955199,0.39071785556863675,2250.32230364995,2297.4685197823196,,,1.813503207324011,1627.9128676465953,10407,0.7051816914391289,0.40894970515553375,0.7164516604602472,7.327442555255392,429.7522888183594,24.17949676513672,0.0816190093755722,2507,-0.028183717624307363,0.3880642607426578,0.31474481904944973,0.5732673907901756,7.4929502813316065,163.71253967285156,332.2077941894531,0.004475793801248074,2950,614,0,138,119,800.67157056,3739.883133784487,21150,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36,2.3792296799999995,85.65226847999999,1.8291823064852417,0.6733972301270312,1.7732796206893642,0.4213944263076878,0.7601709310049138,7557.562598100812,647322.3807069369,0.23753970158359866,2.1152764035149287,,8.895066573662364,0.97423227648174,7557.562598100812,647322.3807069369,17.247622694777245,3.5326501895040847,3.7222222222222223,-0.008788226324460656,10098.282285495923,864940.7855041247,0.08876155495140879,0.8268117206265205,,2.770781827851203,1.0060162218674717,10098.282285495923,864940.7855041247,-0.008788226324460656,"CurrentSlice","Yes",677.6699998378754,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",4,4,"C - 4",1,1,,,,1366,0,40,13,39.28333968,0.5812018934439525,0.35967791063291044,1.6915911113815936,0.2260313842643359,3.2520854519913462,16.01908114365146,12.593337781541475,29.1437627586807,19074.15649867374,749296.5688468799,0.20366229965242233,1515.333455934423,4658.928005153954,16192.836810564579,6104699.477582846,1.737222283820425,3884.68657645009,25219,447.0463193633952,451.3103618037135,6.120690367126464,2.201477122879028,-1.281305571443219,15.77632727324152,2,13.430907720353256,1,30.419586080268804,3,27.96057528854161,2,-0.4048693421920537,-0.9824974810880827,2.722878511774515,5.9138593205896575,38.516441345214844,339.7833557128906,0.0035257311537861824,517,-0.12282275860102158,3850.655172413793,151266.59512848,0.11996425138721883,536.5626165964802,2216.558703095609,3141.2964979498556,1184268.7797270955,1.737222283820425,461.94096510894275,7915,3.7182156534803465,25.036579562909704,3.8064012270542955,5.65818793810168,55.66666793823242,20.858156204223633,0.05539081618189812,141,-0.12282275860102158,0.806333876548575,0.1881116811537762,3.074671601151067,5.826508480819666,62.33333206176758,46.97530746459961,0.02224779687821865,162,1356,0,308,248,2025.4364899199998,2727.759337380389,39641,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,130,2.0070492258461536,260.91639935999996,2.406263705672239,0.6780470333750501,1.7088110288678806,0.4320466331842168,0.6751418095622909,5356.487032633208,1397595.3097731874,0.25347259437606845,2.088476543741182,7.55116871825259,5.65672930555586,0.9632486075091202,4647.1283581692705,1212511.9985772744,54.24719267768742,3.340080741825229,4.6,0.13894060921663706,5274.250278331007,1376138.3919456042,0.062492186065165684,0.9295656390756015,1.8304981221268728,1.525292528638859,0.998692493305682,2392.9305902218457,624354.8335190836,0.13894060921663706,"CurrentSlice","Yes",692.710000038147,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",5,1,"C - 5",1,1,,,,685,0,77,54,272.89938096,0.7182074483465275,0.7815599551191035,1.3495882324405495,0.33507238864939315,7.656177395651179,1.5276113685266814,27.134407482751485,69.10051034505263,27101.7575410462,7396052.855879519,0.1524825479879163,12404.98631080746,5318.729363319004,24035.770933903343,62949684.07589285,1.7829463772071146,4132.54504480945,34444,233.64064329896908,444.09724581901486,12.064471449279784,9.429107764434814,-27.826218316519995,48.744053775917436,2,29.705593410444703,1,53.138714062327395,3,29.705593410444703,1,-1.1618376087540603,0.8620572525117449,0.4812541942083004,7.7008042217601025,308.8283386230469,723.5686645507812,0.0015735739143565297,3728,-0.0664454168772022,4250.46544482627,1159949.38868496,0.2926171713912062,3601.046180576695,2383.955849241179,3650.5971412548415,9560913.91294643,1.7829463772071146,1243.7591755611281,18864,1.946323330050025,12.299031079904196,0.647455279151488,7.459639838589202,772.8931884765625,24.130355834960938,0.05835115909576416,3314,-0.0664454168772022,1.3399701827262749,1.6096994807276515,0.49525007504562146,7.67683429107759,333.4959716796875,124.35720825195312,0.01178905088454485,3351,527,0,337,147,1808.17982352,3266.2598974240764,35985,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46,2.5528960799999996,117.43321968,2.747459108203312,0.6405736002827183,1.7844077796791666,0.38505735846649103,0.7490106601308347,9641.000452794156,1132173.7241079556,0.24827264062534923,3.041520151653543,16.07186176598205,11.267186298760898,0.960331483101276,9041.132149222727,1061729.257835583,29.83396163309763,4.12924092141585,3.217391304347826,0.11481277011239804,7534.8326117045945,884839.6533423336,0.07671732390420898,0.9315150582892844,2.4575556181982745,2.0117139355431615,0.9968472687952423,4468.846004561738,524790.9745697888,0.11481277011239804,"CurrentSlice","Yes",707.7300000190735,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",5,2,"C - 5",1,1,,,,343,0,30,22,54.39231647999999,0.784255263075755,0.9071114364721359,1.1040943645925578,0.6518918781607594,3.0915902641197612,0.8535067508623478,11.017840695889552,29.52194648281263,48078.41762452107,2615096.50729056,0.10917164511805443,830.0530967679414,6309.374904978632,,,1.7769076795751613,5248.799946741828,65484,115.16724827586206,449.59670574712635,4.579871842575073,4.154454125976562,-26.552510862438954,15.809938439295843,4,13.589361234697122,1,14.641582816930814,3,14.641582816930814,3,0.27503995543701387,1.0624176654175779,1.9817677368212443,6.233765960966779,39.862972259521484,2287.482421875,0.0004631016927305609,686,-0.45970577988712874,4701.319923371648,255715.68114575997,0.16751646002530274,426.9597492270307,2645.787385248783,,,1.7769076795751613,787.5484710096459,8646,1.0214388411712378,3.5659159618719176,2.4221605672259656,6.0946133613714615,116.76303100585938,27.841232299804688,0.04266376793384552,422,-0.45970577988712874,1.125651861100317,0.6497566445159548,2.157924868983133,6.173334979679103,63.25480651855469,251.50241088867188,0.0042171054519712925,416,316,0,57,27,99.09404783999999,5173.401682439538,10424,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0.6251990399999999,0.6251990399999999,1.9347481372744961,0.7366490382758428,0.9890198806416448,0.7058823529423188,0.3137052119445484,8561.666666666666,5352.745780799999,0.19842680586824227,1.8862076973001296,,8.275724771189921,0.9899369052632179,8561.666666666666,5352.745780799999,5.728055185086656,,,-0.2167025189189727,42431.5,26528.133065759997,0.055438670721030286,0.9220457406599901,,9.28579578991115,1.002728272743739,42431.5,26528.133065759997,-0.2167025189189727,"CurrentSlice","Yes",722.7999999523163,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",5,3,"C - 5",1,1,,,,188,0,68,46,241.95202847999997,0.40545016899646336,0.8039821739131443,1.2046923176991249,0.5696811242879463,6.811029380398454,2.233091874316819,22.561387776464457,86.59659641397614,32388.35099052541,7836427.221279839,0.1860663267398325,7750.562970685536,5272.863853382745,,,2.335251336163411,6026.381497967479,55268,71.4451488372093,445.4374475452196,10.616406637573242,8.53540168762207,15.01458964423906,17.461651811375628,2,14.813853416369136,1,17.461651811375628,2,17.461651811375628,2,1.4244894737236211,2.691323581580323,0.4948361217014944,7.650243805445801,201.55039978027344,1074.776123046875,0.0010530236177146435,3314,0.6343077370965928,5463.974160206718,1322019.6316243196,0.4909271572730973,2884.958669581561,2339.7799095935825,,,2.335251336163411,2682.4133018839434,14464,0.9747503476152912,-0.19559977683839325,0.6001835419138065,7.503993082475094,467.458740234375,35.3402099609375,0.053498655557632446,2860,0.6343077370965928,-0.21300797200879548,0.10403273614923947,0.5174635605499136,7.6179927298354535,269.4607238769531,739.7464599609375,0.0014556437963619828,3195,174,0,173,97,996.6714695999999,4656.592158912703,26060,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,60,1.964166984,117.85001903999999,2.1475589601914473,0.6583814154346018,1.6234267672038942,0.4329907220534425,0.659220752931114,6601.8624137111065,778029.6111553141,0.24365718129064864,1.5466835738680231,,7.414550900468355,0.9608521995139984,6601.8624137111065,778029.6111553141,25.072350160465817,3.271725353725062,4.633333333333334,0.10175492959551431,9426.667028779631,1110932.8888254196,0.05766739230146308,0.7947579770883153,,2.52757130155041,1.003995888951232,9426.667028779631,1110932.8888254196,0.10175492959551431,"CurrentSlice","Yes",737.8069999217987,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",5,4,"C - 5",1,1,,,,505,0,32,20,44.38913184,0.7247986724199522,0.822964094987126,1.1519091086974014,0.6978567861686893,2.852709092659467,0.38721901541657666,10.027604180461053,27.74179531041684,49190.96948356808,2183544.4297435195,0.1613611338707367,1342.769447913813,5526.463465856993,,,1.5282734784368943,7937.510612069352,58292,167.36422253521127,450.38404788732396,4.406282677459717,3.626212435913086,-12.620293727673088,16.04233064579874,2,16.04233064579874,2,16.04233064579874,2,16.04233064579874,2,-1.0715712888046292,0.058519650515785226,2.4135422865833496,6.034914073577542,34.479068756103516,2315.41552734375,0.0004949865397065878,645,-0.03803263302968815,3600.410798122066,159819.109596,0.25172484848145915,329.8863883664245,2355.8681406972637,,,1.5282734784368943,906.3128626282864,7662,0.710974065511241,1.1834115842638262,2.700081553483656,5.95638234884268,67.65714263916016,17.685714721679688,0.08644528687000275,280,-0.03803263302968815,-0.1526102122735606,0.04749618465115635,2.3915008045140955,6.041422497808151,43.466217041015625,879.2196044921875,0.0012327661970630288,592,489,0,51,30,106.07543711999999,4210.434184675835,13312,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,0.5557324799999999,1.6671974399999998,2.4050033015644483,0.7022836014351651,0.9477754494522395,0.6561771561630373,0.28559743791851616,6989.619047619047,11653.074982765711,0.15549130369582947,1.6252585788119351,,7.075390744481395,0.9835314407298021,6989.619047619047,11653.074982765711,5.43049440862585,4.009622787125493,2,-0.20956052334877887,13708.349206349207,22854.524703451425,0.04236911273187571,0.6003382870466102,,3.3923229885510784,1.001918700909782,13708.349206349207,22854.524703451425,-0.20956052334877887,"CurrentSlice","Yes",752.7999999523163,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",6,1,"C - 6",1,1,,,,907,0,64,25,113.16102623999998,0.5704700739933324,0.4869284340058335,1.6726781008667078,0.2436762195025759,5.488639170501223,3.161701632660674,20.904882897543338,49.92716855182316,26672.752302025783,3018316.0231425595,0.1516466897899388,6204.162448588424,4359.554405789798,23725.557274830757,25765955.2004662,1.053377129654831,4044.8345941891803,33671,304.963070718232,449.87886961325967,9.870053544616699,4.806009716033935,8.84460101723561,60.87946912988472,4,50.887869581570634,1,51.175867144400925,2,51.175867144400925,2,-1.1879964121453725,0.9901268472077245,1.0259488755261168,6.912702027239072,110.34807586669922,674.0385131835938,0.00170938391238451,1402,-0.369038867279692,2593.4677716390424,293479.47455904,0.31868703942015,777.1331011557487,2462.0505786838808,1930.6293878006586,2096663.5151515151,1.053377129654831,826.5045659752201,7464,1.6778775485292492,4.247152864828512,1.582165786555152,6.588231662661736,225.08749389648438,11.111249923706055,0.15325479209423065,800,-0.369038867279692,0.1427460458408415,-0.11914265377273381,1.0496898412407707,6.895625531071187,120.54574584960938,166.89451599121094,0.006745706312358379,929,756,0,340,164,3220.0876555199998,3588.00287997929,40535,4,0.39074939999999997,1.5629975999999999,4.380337265539067,0.4542638039630427,2.0682151263755637,0.07142857142857142,0.32424778820645095,8873.983333333334,13870.014652439999,0.044937554847878806,0.9815427799984973,1.9891414141853963,4.041631449307349,1.0032058347239723,4412.770435120436,6897.149599444197,40.579484538929435,23.178171646151153,3,3494.15,5461.348064039999,0.05596076536197536,0.7727526038242756,1.1855849266024086,1.2955735883496506,1.016800397215292,546.9549728049728,854.8893098022377,0.1378544702127651,0.1378544702127651,195,2.268350363076923,442.3283208,2.181600008516895,0.6937855215864491,1.6564750173894658,0.4078454677576077,0.7045292989006318,7510.727983638691,3322207.696988472,0.28261892983535525,2.8743099373569194,11.331160305088773,11.065560265308578,0.9589619975426471,6847.889599800306,3029015.5077034533,32.518495585849806,3.518588162035966,4.779487179487179,0.13184889480696926,4825.313523157983,2134372.8280320023,0.06527263541502737,0.8831703266947829,1.6372562652395766,1.657100631244281,0.9974994404734834,1878.1184959629554,830745.0005827156,0.13184889480696926,"CurrentSlice","Yes",1361.5230000019073,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",6,2,"C - 6",1,1,,,,1461,0,67,39,142.54538111999997,0.39372900972807584,0.7701749655079643,1.7037741471374308,0.4998610825101796,6.217168760538177,1.7969348717161975,21.365848895843104,67.45013131050386,30154.427631578947,4298374.37919888,0.26836570763566686,6920.272773752406,5324.797146192595,27197.294584368647,37205898.991416305,1.762933679148909,8092.41430969719,43093,483.5430736842105,448.6372561403508,9.849778802490233,7.586053049468994,14.822534650189846,29.376240057032316,2,29.376240057032316,2,29.376240057032316,2,29.376240057032316,2,-0.7295610803793783,-0.5084835503970457,0.7780171676755241,7.177778446534422,77.32836151123047,954.7014770507812,0.0016404922353103757,1742,0.1660111616211783,4605.495614035088,656492.1275491199,0.24843715422244245,2171.0531224115844,2612.404351057881,3991.693038927792,5460636.077253219,1.762933679148909,1144.1762241348174,11396,1.0957318012177677,4.401807692186496,1.0473308026401287,6.952163186213792,262.0722351074219,28.121511459350586,0.05168188363313675,1218,0.1660111616211783,1.6159399142839193,5.079341310900654,0.9222923292637051,7.047912781066383,189.32241821289062,135.34942626953125,0.008545084856450558,1222,1419,0,113,122,686.6769456,3255.5954476479515,37534,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31,1.5932491664516129,49.39072416,3.1522975490418172,0.7042334221568396,1.59443903742699,0.4151163391343714,0.5665052261651434,5241.731743656434,258892.92667165078,0.2747830408408269,3.0187815182936,8.539768251607857,5.310430308197021,0.93491938995325,4627.929168549138,228576.77299582862,18.14334796121137,2.8754675952206386,3.5483870967741935,0.20579922223870073,5293.421446852878,261445.91854413858,0.05270838052934027,0.9590691855389913,1.7900518381635162,1.319686951117695,0.9935557833591474,2336.2883996425776,115390.97590495438,0.20579922223870073,"CurrentSlice","Yes",1376.646999835968,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",6,3,"C - 6",1,1,,,,1282,1,17,2,3.1259951999999998,0.33765145904094185,0.11722767588683244,4.376121900103242,0.02237353410951881,1.475533045382788,4.415881741881772,5.174877668119315,10.786108137934033,12929.266666666666,40416.825539519996,0.053425459344895856,42.20394143369943,5908.204090296518,,,2.818899778409524,690.7520106593172,13777,416.69175999999993,452.42571999999996,2.920534120559692,0.34236742730140685,1.3880439593737275,41.635877647142564,4,22.86122453131288,1,45.345875330314456,2,45.345875330314456,2,-0.9320158985550755,-0.2700755879447554,33.333333333333336,3.4011973816621555,11.399999618530273,174.73333740234375,0.005789496935904026,30,0.8852596155083612,7267.1,22716.91971792,0.20121917639005946,52.721244283795784,2577.991617743939,,,2.818899778409524,1462.2798767442011,8910,-0.965668582669259,-0.41463846736787247,33.333333333333336,3.4011973816621555,8.4375,59.0625,0.019868729636073112,32,0.8852596155083612,1.2842451508091035,1.5951333142997877,33.333333333333336,3.4011973816621555,7.833333492279053,137.97222900390625,0.0077460589818656445,36,1246,0,68,47,231.53204447999997,4177.486948694869,27847,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,2.636255952,26.362559519999998,1.152514586871971,0.6941980067572956,1.7645835883131227,0.5082108215685164,0.837440258173852,9342.218605561106,246284.794037956,0.270238497200061,2.767820910146256,,8.453592963152271,0.9221755158709145,9342.218605561106,246284.794037956,8.503494067325923,4.995555825634644,3.6,0.14666503813059706,10396.447826340325,274076.9746184714,0.04547224581197691,0.9211209319451708,,2.2438904199878427,1.0014055180033519,10396.447826340325,274076.9746184714,0.14666503813059706,"CurrentSlice","Yes",1391.6369998455048,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",3,1,"C - 3",1,1,,,,1071,0,83,45,163.90634831999998,0.35974057013386224,0.7553502925614942,1.4927712701210958,0.718530416918222,6.240287262167636,5.101619460193692,26.54036394626117,75.66727779331649,54063.78385251112,8861397.387626879,0.1315074855994466,14042.668270737977,4625.098222157249,50918.71963232764,80095145.98165137,3.807123327892369,7109.792276435701,65535,359.1686631913541,447.60765467260006,9.957700399017334,7.52155190963745,-3.396901315385953,50.29442359058074,4,35.470895912078674,1,42.204106547151355,3,35.470895912078674,1,-1.9904552514010387,6.250870758503217,0.8733680929253952,7.262534923714933,124.0993881225586,2838.7724609375,0.0003963459166698158,2294,0.1311827911487582,10257.727272727272,1681306.6193351997,0.3444715794151051,4530.920692903371,2694.351190983343,9248.626355296079,14548089.256880732,3.807123327892369,3533.4955148457616,28998,1.5437600568207397,2.9924804689336213,0.7472733011656897,7.242960310996575,178.7139892578125,144.96127319335938,0.00991332158446312,1937,0.1311827911487582,1.4537964568884372,3.665829368825646,0.9307573891750046,7.076928607393933,287.4680480957031,88.724365234375,0.0125198382884264,1346,792,0,382,106,2280.8302977599997,4042.40723651149,41115,1,0.20839967999999998,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,7495.5,1562.0598014399998,0.0010377125732842403,1.0117130973868005,0.9386544194943733,3.2138138032286383,1,0,0,18.16851449839845,,,5862,1221.6389241599998,0.10976922055267113,1.1956909473843993,1.8638729099331413,2.219735471276817,1,2716.935779816514,566.2085470943118,-0.9999952531270025,-0.9999952531270025,130,1.713686599384615,222.77925791999996,2.154360950567346,0.7019812981881167,1.4552311347831555,0.4715224969619666,0.577399049076645,6834.176343595531,1522512.734320631,0.31829737591571905,2.1300660640424733,6.77254001610947,8.208301726027171,0.940149411947864,5825.075426164338,1297705.9807689188,32.313978318088395,3.097431193732009,4.415384615384616,0.1568217961983655,5399.039752285656,1202794.0694947788,0.0695016816498339,0.8403890243272665,1.7166707495628404,1.8702112158041035,1.0019721018606746,2253.9755321021694,502138.9964115584,0.1568217961983655,"CurrentSlice","Yes",0,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",3,2,"C - 3",1,1,,,,904,0,26,6,11.982981599999999,0.47232632447574696,0.2366196519810049,2.3422220360992747,0.10232679227978381,2.113520835123114,1.2144337171427826,8.076453419663856,17.85526510347228,17885.869565217392,214326.04589999997,0.18801415570620894,264.76926940877917,6033.445990526196,,,2.40293984483184,3362.796665375726,24705,295.81111304347826,452.22315130434777,4.114987336349487,0.9736868714332579,-1.3165582442417738,27.88573606072252,3,14.84796988186187,1,38.73423688579074,3,24.97066432319431,2,0.2768519622344918,-0.9741717404001888,8.695652173913043,4.74493212836325,15.811111450195312,327.73333740234375,0.0034902587067335844,180,-0.007429479560864882,6499.921739130435,77888.44260144,0.41653382968133584,170.95370390538213,2704.9872900939413,,,2.40293984483184,2707.4372946289686,11247,0.008158207070951707,-1.3395684822801082,9.149338374291116,4.708767927638384,11.99009895324707,57.950496673583984,0.034538086503744125,101,-0.007429479560864882,0.3632011491586401,-1.050590394429425,8.998109640831759,4.720822661213339,15.891566276550293,104.55421447753906,0.010385934263467789,83,874,0,90,23,95.13445391999998,4640.44578313253,13326,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",14.5,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",3,3,"C - 3",1,1,,,,895,11,7,7,4.480593119999999,1.1520930907551301,0.9917576856871317,1.006169479000792,0.9834195828465694,0.8470584621705215,2.285312269362907,2.327743903439551,6.99083255173614,11513.511627906977,51587.360987039996,0.1050442255419709,92.71967108145887,5410.41420182703,,,3.3313082497761086,1209.427912221965,13863,289.9119348837209,448.4442697674418,1.2056969086647034,1.1957591757774353,121.62808866068745,28.921838205494172,2,26.425499798303594,1,28.921838205494172,2,28.921838205494172,2,-0.2021508144789138,-0.9020725510457743,23.25581395348837,3.761200115693562,12.689655303955078,134.60345458984375,0.007789259310811758,58,0.47181022142399465,8067.186046511628,36145.77829775999,0.23234505589756194,118.72112379188891,2421.6270130672565,,,3.3313082497761086,1874.3707929127759,12598,0.5867272233517382,-0.21168761321908391,23.25581395348837,3.761200115693562,12.078947067260742,74.39473724365234,0.016181545332074165,76,0.47181022142399465,-1.0398899257520466,0.19172830527717144,23.25581395348837,3.761200115693562,8.217391014099121,694.4058227539062,0.0015500677982345223,69,874,0,40,23,64.91650032,3277.0144462279295,12598,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",28.967000007629395,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",3,4,"C - 3",1,1,,,,973,1,18,9,13.233379679999999,0.8412220412310826,0.5536081878915253,1.3130199684010213,0.35712136234213043,1.6629573619649345,11.408475216491315,5.720030573344865,14.059989517274385,5771.244094488189,76373.06432831999,0.09801742561132229,280.3521059344287,4589.234601778112,3310.9107611548557,420485.6666666667,1.7328682160478188,565.6824887162792,6744,316.76084409448816,451.40148661417317,2.910785559082031,1.6114347187042235,-8.591943016858787,13.83929984525694,1,13.83929984525694,1,27.10218340776724,2,27.10218340776724,2,-0.21983928367200722,-0.8273548636984014,8.122016244032489,4.8223556791968605,30.825000762939453,35.4375,0.029817743226885796,80,0.7498525618381595,4067.511811023622,53826.92814816,0.21181371001480673,599.525700844162,2347.2712889272466,3359.0984776902887,426605.50666666665,1.7328682160478188,861.5547672219589,5823,-0.007615390416072534,-0.8751344153925547,8.494016988033977,4.789608568304264,27.387096405029297,19.892473220825195,0.06026284396648407,93,0.7498525618381595,0.07060047371053856,-0.7554290789784339,7.998015996031992,4.833271382827726,18.895954132080078,107.21387481689453,0.012264194898307323,173,964,0,166,31,331.98069023999994,989.4300062774639,5823,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",43.4229998588562,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",4,1,"C - 4",1,1,,,,1471,0,72,53,253.83081023999998,0.6992101586158588,0.715405512334621,1.3001267837947075,0.37170664779991813,7.247280480201182,1.6071265125421934,25.33722980595945,67.54189406918456,30650.81239737274,7780120.545339359,0.11789271185343884,7778.569445208965,5590.926145322899,25618.47906403941,62406615,1.03981663702943,3613.507394037276,40786,486.1990807881773,444.5764325123152,11.786661305236816,8.432242469787598,-30.23141936092729,26.969584492299138,3,15.518253948286814,1,20.4900730411665,2,20.4900730411665,2,-0.8546077287819434,1.1625551250545918,0.5028567114519212,7.650052617296596,314.5415344238281,935.2504272460938,0.0011432133615016937,3538,-0.02233650678626535,2445.961001642036,620860.26286224,0.5872047229380728,2302.3818928281576,2352.3003138608256,1554.6276683087026,3787072.9999999995,1.03981663702943,1436.2798522865428,20696,4.308911135994824,32.54031082091253,0.7573183851424041,7.312627142113954,679.8792724609375,12.590248107910156,0.19603431224822998,2543,-0.02233650678626535,0.8202259123891816,1.168353278190124,0.4705013198303499,7.6996495637474816,170.88385009765625,496.45123291015625,0.0027596205472946167,3220,1375,0,224,99,1346.36613264,2561.149678817429,20696,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51,1.718275792941176,87.63206543999999,2.85986949004823,0.7660416071544092,1.5552997642450688,0.4646818540945031,0.5679846794178682,4335.556025900572,379933.7293805053,0.2262664590375718,1.658607987563131,4.864124187622183,4.87301241049109,0.9627698225399406,3444.222692567239,301824.34838498523,24.962630538248813,3.720752413108756,4.509803921568627,0.1276449070293725,10530.575036942151,922816.0407581448,0.07233273881330797,0.9463744200277221,2.0925829708436416,2.8142931690791437,0.9953941658188803,5498.241703608818,481822.276775585,0.1276449070293725,"CurrentSlice","Yes",647.4499998092651,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",4,2,"C - 4",1,1,,,,1235,0,67,35,154.84096223999998,0.6176154705152445,0.9067847092443241,1.4008226417615002,0.3620030534008615,5.875496718750319,0.07291459750607926,23.142756482320767,56.12919062083368,28567.588156123824,4423432.838970239,0.12723026257799985,1787.159742685183,5255.228521061166,,,1.4606361638629386,3634.6617423237926,38892,411.3651545087483,448.33900538358,8.706849783325195,7.8952382492065425,20.301675707571796,24.68021953860805,4,22.5613281281456,2,22.472492844889537,3,22.5613281281456,2,-1.076302572009007,1.570537284362965,0.7689534805787167,7.2072786106012,162.06739807128906,812.5740356445312,0.0013558100908994675,1810,-0.2555399211860235,3529.372812920592,546491.48245632,0.209107769138762,1638.572386390427,2416.3257765619564,,,1.4606361638629386,738.0192753688222,9139,0.22627034176339228,3.7526216965188794,1.1493544957059971,6.889692475704438,398.6366271972656,15.889955520629883,0.08457846194505692,1354,-0.2555399211860235,1.1171623745726678,3.2277523101771086,0.8604308675498008,7.124090284663542,209.0244598388672,264.0502624511719,0.0040690964087843895,1472,1235,0,69,35,171.82553615999998,3496.888417222559,9139,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",662.5329999923706,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",4,3,"C - 4",1,1,,,,706,0,50,55,153.90316367999998,0.6454124351563322,0.430767265652293,1.4897647521410151,0.28455403441023674,6.04077525439135,2.1812335002174796,21.177254575605403,54.740661517448416,41444.28232904536,6378406.1668871995,0.18258327106017336,7781.464196656348,5422.035522767316,38295.26911318633,56562112.48017621,1.4429611216237734,7567.032634378442,57882,236.10907677725115,444.32447447528773,11.096018499755859,4.7798015487670895,49.053921182200334,23.18461237912863,3,14.37846948085215,2,14.37846948085215,2,14.37846948085215,2,-0.5812896616504378,-0.2680245803150272,0.721970691198696,7.252946121894845,93.13722229003906,1701.9375,0.0007005344959907234,2434,-0.15724754833502863,3315.1577522004063,510213.2661619199,0.41795906676750544,1507.6003531347926,2297.4685197823196,2719.225593610098,4016296.2017621147,1.4429611216237734,1385.6002402967429,20090,3.0650446882592988,20.678065818522192,0.9575852532787783,7.038060294614337,378.0359191894531,18.136335372924805,0.09684592485427856,1643,-0.15724754833502863,0.995290845986478,0.25538426559772054,0.7293049966330954,7.246606066069354,105.09441375732422,296.2092590332031,0.008257036097347736,2203,706,0,109,131,536.42077632,3267.1744366744365,35977,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,2.8689689279999997,43.034533919999994,2.409122798864988,0.6267906399830024,1.9501150542085348,0.3805361764348916,0.8574422516901308,8018.205283272284,345059.7272405043,0.26465287309168084,1.8615112827378835,13.454896111395529,9.437231762251145,0.9474452362453284,7422.273124681976,319414.06454763084,23.527642508901287,2.8663994063155545,2.933333333333333,0.13974655399887942,10711.59390761091,460968.451354347,0.06756804879815557,0.6545328898213436,3.4015715950842256,2.9390631899009563,1.0061159322236661,7562.5806917518785,325452.1353019332,0.13974655399887942,"CurrentSlice","Yes",677.6699998378754,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",4,4,"C - 4",1,1,,,,1340,1,8,6,3.9595939199999997,1.0181287778766266,0.8409320460957567,1.0338765708880926,0.8197761749421987,0.8071788167556743,14.925206777934424,2.350019472259751,6.99083255173614,8172.578947368421,32360.093910719996,0.06623859053204237,77.12599897128428,4658.928005153954,5283.70210007778,200780.67980295565,2.4240278376097857,541.3401104855267,9003,433.6223368421052,451.7416105263158,1.2291401564598083,1.033623346710205,0.5267473134942637,11.320948426844025,2,11.320948426844025,2,11.320948426844025,2,11.320948426844025,2,-0.04689368725035032,-1.1936067584930325,26.31578947368421,3.6375861597263857,13,70.80000305175781,0.014313271269202232,25,0.9309183843923071,5373,21274.898132159997,0.12951451234712485,102.3594263622124,2216.558703095609,4593.665024630542,174559.27093596058,2.4240278376097857,695.8814748411019,6723,0.18831618542379705,-1.1473604232310095,27.700831024930746,3.6011047291705993,11.78787899017334,34.09090805053711,0.03139971196651459,33,0.9309183843923071,-0.23606876205506946,-1.1372744089276516,27.700831024930746,3.6011047291705993,4.710144996643066,2084.95654296875,0.0005327874678187072,69,1305,0,109,78,277.90097327999996,2042.8121484814399,9190,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,0.9377985599999998,7.502388479999999,3.1096483563775252,0.3283637904628399,1.3919974095253498,0.16105559496934893,0.43123288860525427,5664.655448717948,42498.44578163076,0.20356894603344397,2.4173703509801334,7.268575936852461,5.982171204265419,0.9724523622513622,4885.32047334849,36651.57204035785,11.591610093480995,3.15207210092229,2.75,0.2021630568470808,4809.650106837607,36083.86355436923,0.05758974750358216,0.886650367888124,1.6648858227890129,1.3909319782314062,0.9995684302096819,1920.773259546967,14410.387175117214,0.2021630568470808,"CurrentSlice","Yes",692.710000038147,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",5,1,"C - 5",1,1,,,,1020,0,66,81,237.67983503999997,0.5450647029955744,0.39911833828177923,1.9144397122496677,0.14893749007206258,8.50995160638375,0.4272235023357524,31.963720546895033,74.02477075894174,31235.651468654098,7424084.488436639,0.1529303841002617,8736.760659701707,5318.729363319004,27967.476143978773,63793813.08441558,1.980098657780597,4776.880176723174,42296,340.0554360368259,440.2489615081105,15.809386866760253,6.309816215515136,127.11800409564741,29.608192008829768,2,29.608192008829768,2,40.84355570507485,3,40.84355570507485,3,-0.8611740481918447,0.38163390482481896,0.5083643717490867,7.625541027830083,209.68235778808594,953.7909545898438,0.0011885775020346045,3315,-0.045757965447867345,4720.467777290662,1121960.0026180798,0.306800843283012,4305.494139524013,2383.955849241179,4093.1950500179346,9336577.909090908,1.980098657780597,1448.2434947630602,13580,1.4152076822586024,4.4807315079119885,0.682111589919663,7.399200680929077,673.7662963867188,28.345226287841797,0.05013066902756691,3111,-0.045757965447867345,0.3191699001654989,-0.45081185335131524,0.5087487682494641,7.625311633641673,235.82984924316406,360.3096008300781,0.0033943671733140945,3485,997,0,120,98,528.60578832,3498.8675340035484,13580,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,1.0072651199999998,12.087181439999998,1.6578944055702645,0.7340874854497407,1.1448181941328102,0.543798645752319,0.4204135529336175,5873.567375679876,70994.87456990729,0.2249766282961038,2.0081778272200634,9.363658135141831,6.864285318120633,0.962811601023838,5246.294648407149,63412.915302998204,14.724153182423066,3.2818244483093904,3.5,0.15346060285475793,10812.323917055168,130690.5209734973,0.14226002769502796,0.870691444525631,3.308367159931762,2.886766544190785,1.0130968833922018,7544.148592379843,91187.49284641574,0.15346060285475793,"CurrentSlice","Yes",707.7300000190735,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",5,2,"C - 5",1,1,,,,713,0,38,19,50.95372175999999,0.6562076010408052,0.6645452232034084,1.3250137978331515,0.4285480578283615,3.277994519574744,7.667378168832967,12.060803316529128,31.237211586284914,36185.82822085889,1843802.6228207997,0.2029900363753284,2050.145148200786,6309.374904978632,,,1.0605043837982324,7345.362586823531,46831,235.2089791411043,450.5456245398773,5.460694869232177,3.628878690719604,-11.833363903582788,34.127069457729014,2,29.717304415524275,1,29.717304415524275,1,29.717304415524275,1,-0.5252525073648667,-0.9393034064075874,2.1119015059321433,6.169682827125262,32.80080795288086,1270.036376953125,0.000948411354329437,743,-0.22417694035750746,2805.8691206543967,142969.47446879998,0.25463235965221614,465.137956275009,2645.787385248783,,,1.0605043837982324,714.4650750675178,5004,0.2301472161324189,-0.39295157880428233,2.5384637902986356,6.03568950378583,84.62544250488281,11.024735450744629,0.13034255802631378,283,-0.22417694035750746,-0.7348399942362398,0.04519973887977402,2.3210006649353256,6.100573802972621,79.03092956542969,328.365966796875,0.003121944610029459,388,660,0,132,197,1363.35070656,2944.433277285234,12612,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71,1.523372308732394,108.15943391999998,2.4057327834230957,0.6728017294240455,1.5641738416480007,0.36289864779235925,0.5632256329470662,5141.559194712956,556108.1319663243,0.1961014048829684,1.6490341840906446,,4.969841789786877,0.9788252202341343,5141.559194712956,556108.1319663243,36.17895970460019,3.1627178463763457,4.084507042253521,0.011135479839120969,8903.397515335359,962986.4352234069,0.04846753061602035,0.9234125803424882,,1.9484376268528443,0.9974093999272492,8903.397515335359,962986.4352234069,0.011135479839120969,"CurrentSlice","Yes",722.7999999523163,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",5,3,"C - 5",1,1,,,,97,1,23,3,5.209992,0.29382897175419803,0.10510432557151836,4.940342943768794,0.021503059336742347,2.0239843155913744,9.528751968294117,7.108932578102003,14.927124413802103,19970,104043.54023999999,0.058084950220497734,127.83229830188638,5272.863853382745,15776.42105263158,788821.052631579,2.2314833880708527,1159.9564559033397,22002,34.694544,452.35255199999995,4.025745839309692,0.4231233013629913,-0.3825729767572444,19.7812047668671,1,19.7812047668671,1,37.98264514410695,3,32.67948703676685,2,-0.104381634860457,-0.6936809136996267,20,3.912023005428146,15.303030014038086,398.93939208984375,0.002541466848924756,66,0.0550406895208029,5221.18,27202.306030559997,0.048809975289490624,73.32078148344564,2339.7799095935825,4064.4957894736845,203224.7894736842,2.2314833880708527,254.8456667819827,5890,0.2538558515792619,-0.11860066955329795,20,3.912023005428146,22.409090042114258,31.25,0.03305555507540703,44,0.0550406895208029,-0.48799314880763967,-1.4684875277322251,20.8,3.8842971182057484,14.345454216003418,344.6181945800781,0.0029757244046777487,55,0,0,122,83,838.60031232,3570.8221918489066,17297,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,3.5678025216,89.19506304,1.7785125487329199,0.5654110537147793,1.901173905865571,0.3398932695456311,0.9777026422274432,6422.398485943888,572846.2378217656,0.27599734888846206,1.8124865014183649,5.55242167870655,7.212994984297721,0.9447339212862841,5265.714275417572,469675.7167464982,17.07852300676492,3.947409358751876,4.08,0.09910943855380694,8474.197430431923,755856.5740207813,0.0670067156546355,0.8459352031489615,2.020755430334679,2.2721857219990147,1.0000676727076352,4280.618483063502,381810.0354470382,0.09910943855380694,"CurrentSlice","Yes",737.8069999217987,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",5,4,"C - 5",1,1,,,,538,0,40,30,94.82185439999999,0.7527371218135215,0.920236761228771,1.062212945159784,0.823411081531737,4.0037787702433,5.628315499598638,13.293717638042414,39.786660413889116,34136.86483516484,3236920.8270724798,0.13391826436979887,4043.841601615124,5526.463465856993,30418.588519375364,27680915.55263158,2.3300264857822315,4571.549689751695,42235,179.5371032967033,448.75762417582416,5.892264889526367,5.422278758239746,-15.496833733818136,21.592433595332036,2,12.281053705722128,1,35.48316626665918,3,28.161982117447028,2,-0.8248443943793337,0.17341149141389867,1.164110614660065,6.772312788796349,81.76393127441406,1124.6475830078125,0.000972559442743659,1220,-0.09682848505659931,5489.235164835165,520499.45756735996,0.2727440616894924,1475.018571260166,2355.8681406972637,4517.12990167727,4110588.2105263155,2.3300264857822315,1497.156294425933,10921,0.9067540834406113,1.0346458231063274,1.299359980678662,6.693842777113874,179.264892578125,37.69712448120117,0.03605296090245247,974,-0.09682848505659931,0.9018858793820584,0.8006250981331746,1.2003381234150465,6.750410185280478,101.74250793457031,361.1172790527344,0.0031303339637815952,1134,478,0,259,130,1559.8716048,3514.3557114228456,28392,2,0.57309912,1.14619824,7.046780246032909,0.893138492557456,2.079734294090347,0.3827160493785976,0.31955569655148214,9166.4,10506.511547135999,0.06342560337129577,1.2387600175024884,1.6111230856756968,3.641987351614195,1.0031959667212993,3476.952631578947,3985.2769868791574,47.20418973111361,2.203095219730631,1,3708.25,4250.3896234799995,0.040976005216795286,1.0242105508564223,0.99730350438269,1.2637217462004973,0.9901980861019974,0,0,0.05656078298455346,0.05656078298455346,108,1.6951770266666666,183.07911887999998,2.4797769044566387,0.6776522604704722,1.5990531520040403,0.41113729390697173,0.6015312376811459,5284.9201002362,967558.5153024445,0.22177533575277952,1.656404997011268,5.436571841065934,5.349772928650876,0.9744438265691001,4312.814837078305,789586.3402648867,30.095892181149633,3.042872034592454,4.87037037037037,0.1575393050976373,8421.00390785895,1541709.9755358533,0.06291051683401344,0.8658777295505014,2.26476011804168,2.0838953482507803,0.9994139561826912,4702.727592069477,860971.2238887439,0.1575393050976373,"CurrentSlice","Yes",752.7999999523163,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",6,1,"C - 6",1,1,,,,1660,0,4,7,1.5629975999999999,0.7689393843579162,0.668656262008848,1.6010487473871684,0.3236595144786274,0.6310902819498442,7.047547023994799,2.0415664574047057,5.05403255173614,15752.066666666668,24620.442395039998,0.17415313262829646,40.92098984138708,4359.554405789798,,,4.523844241773153,2743.271755369768,22260,536.29992,452.1997599999999,1.0460256182670593,0.699431579875946,75.96375061437111,23.31780578481046,2,2.863454143512691,1,2.863454143512691,1,2.863454143512691,1,1.0966851805097635,0.19891531881214952,66.66666666666667,2.70805020110221,3.559999942779541,268.55999755859375,0.00413129385560751,25,-0.8415691328789876,11137.933333333332,17408.563068959997,0.03583530902085049,53.226089626715286,2462.0505786838808,,,4.523844241773153,399.1312828536314,11780,-0.20602827655516687,-0.3169017262137346,66.66666666666667,2.70805020110221,8.5,129.625,0.007769456133246422,16,-0.8415691328789876,-0.16362108853390267,-1.3943622742313984,66.66666666666667,2.70805020110221,8.333333015441895,300.6666564941406,0.0033356116618961096,15,1632,0,32,14,36.15734448,3484.636887608069,11780,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1361.5230000019073,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",6,2,"C - 6",1,1,,,,296,1,1,1,0.10419983999999999,12.566370614359172,1,3.1415925460576575,,0.2282540689670175,10.725917370515488,0.3228,0.3228,7742,806.71516128,0,1.1369235655520757,5324.797146192595,,,1.4255067361574343,0,7742,95.5488,452.56559999999996,0.3228,0.3228,90,0.9683999999999999,1,0.9683999999999999,1,26.831075170492344,2,26.831075170492344,2,,,1000,-0,2,64,0.015625,2,,3724,388.04020416,0,1.075516242020035,2612.404351057881,,,1.4255067361574343,0,3724,,,1000,-0,2,16,0.0625,2,,,,1000,-0,2,1089,0.0009182736393995583,2,288,0,20,19,26.987758559999996,3463.5328185328185,8791,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1376.646999835968,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",6,3,"C - 6",1,1,,,,1316,21,37,77,165.15674639999997,0.5515951664920564,0.7821407529778557,1.899974393310678,0.15365234619664314,7.0669510959411665,0.5924581681126948,25.82601742119756,61.33987200017403,36094.38927444795,5961231.89586288,0.12503926026870404,8367.50755051961,5908.204090296518,32579.389274447953,51638332.00000001,1.8457204058637828,4513.215734727617,51539,430.6113304731861,434.2906394952681,11.131583340454101,8.706464975738525,71.63195546123168,27.999215347883762,4,19.599269008027697,2,21.672734214299112,3,19.599269008027697,2,-0.6588525080434015,1.7610633788813672,0.6874384260963887,7.30787422196599,182.96083068847656,1284.6973876953125,0.0008448460721410811,2502,0.020838096078819757,4758.251735015773,785857.37510736,0.30892594753021535,2653.0319052215164,2577.991617743939,3936.251735015773,6238959.000000001,1.8457204058637828,1469.9474258270388,17498,1.9706262122441094,9.123243410515299,0.8689508304391526,7.126542273011772,478.0986633300781,29.838565826416016,0.04762334004044533,2230,0.020838096078819757,0.576826071680786,0.3175762847331871,0.6890306401695707,7.307329713311507,173.33692932128906,389.4981994628906,0.0031712274067103863,2499,1304,0,76,153,619.3638489599999,3353.5075706594885,28179,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,2.730035808,27.300358079999995,2.404484283321758,0.7830916443697991,1.8900763429017708,0.5529274386922143,0.838298638837622,8242.4933596332,225023.0201900085,0.24891786207083605,2.9247159821295217,10.027364184468613,7.458472853798045,0.9387956722863141,7420.493359633199,202582.12584824854,17.255110665748234,6.776678859390929,3.4,0.06456127790629598,11019.189899920868,300827.830019359,0.1414774662702665,0.9714078471624574,3.1349046656958373,2.3782983443454673,1.0224059195924986,7504.189899920868,204867.07136815903,0.06456127790629598,"CurrentSlice","Yes",1391.6369998455048,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",6,4,"C - 6",1,1,,,,24,0,10,7,5.6267913599999995,1.05899052529708,0.9277860492864543,1.0505893321127084,0.7124843403908456,0.9699669764010824,2.7337116458675634,3.0623496861070585,8.17126510347228,2462.9814814814813,13858.68291984,0.027699185069676224,53.45950037850114,5257.997173365397,0,0,0.21119402905533693,68.22257987874087,2621,9.187844444444444,451.8602222222222,1.4221275489807128,1.319430100250244,-18.729381169602913,19.538368561231223,2,19.538368561231223,2,19.538368561231223,2,19.538368561231223,2,0.06336793491198534,-0.15482705847370148,20.5761316872428,3.911967693168725,17,9,0.1111111119389534,17,0.04172373767775191,495.51851851851853,2788.1793187199996,0.04687931479664949,50.91791346542661,2346.2714392776847,0,0,0.21119402905533693,23.229568617199018,555,-0.2748175432460454,0.6668684197105526,30.864197530864196,3.558850600907842,17,1,1,17,0.04172373767775191,-0.21464079786871892,-0.6166391706789964,27.434842249657063,3.6872111899004243,17,4,0.25,17,24,0,25,18,30.634752959999997,520.0034013605442,1164,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1406.579999923706,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",7,1,"C - 7",1,1,,,,232,0,35,7,18.02657232,0.4018052764340137,0.2081346300659567,2.7269838021115196,0.0822636632906929,2.7970993961955934,3.6710402157860673,10.97994603265426,23.743989517274382,21337.91907514451,384649.54136639996,0.19648738268026436,508.57833236270454,5930.2609939339145,,,2.480874840106874,4192.631870918432,29158,80.40145664739883,452.14950520231207,5.4768173835754395,1.1399153600692749,-0.5901665703418165,54.9702920114181,3,20.555119451881716,1,52.238991551631834,2,20.555119451881716,1,-0.020946406453119303,-0.8295215499641495,6.047646095759966,5.121238545685758,20.33333396911621,454.8047180175781,0.0025634602643549442,297,0.2246196544342715,6286.381502890174,113321.91079295998,0.31415070724167743,236.38464641401106,2533.937384208936,,,2.480874840106874,1974.871195123947,9724,-0.22629271169270404,-1.2198971376775019,5.780346820809248,5.153291594497779,16.84347915649414,49.982608795166016,0.031127143651247025,115,0.2246196544342715,-0.03823251699793528,-1.3653448291636325,6.047646095759966,5.121238545685758,21.740331649780273,310.8232116699219,0.0034836982376873493,181,232,0,97,46,237.78403487999998,4728.528483786153,19849,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13,1.6271205784615381,21.152567519999998,1.7022482637133982,0.6113312673640758,1.3000525748782066,0.3834735392747498,0.5551059133579176,6197.781777368973,131098.9975200228,0.24432961466682535,1.7846856252991934,,6.0229802602706615,0.95046818478601,6197.781777368973,131098.9975200228,15.76881690321715,3.1408720004573962,3.230769230769231,0.10911579857886258,6043.978939353328,127845.67260412924,0.08255500877989784,0.8983433912389258,,1.2674466789968084,1.0007881828361331,6043.978939353328,127845.67260412924,0.10911579857886258,"CurrentSlice","Yes",1421.4930000305176,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",7,2,"C - 7",1,1,,,,421,0,34,15,37.095143039999996,0.6898866993031068,0.4966512019671641,1.384280991890761,0.37455258307589967,2.8587797436438795,19.93616411855526,10.6572897868079,25.994087172482807,26953.41011235955,999840.6035337598,0.2217438900036433,2145.404387243516,5999.670293593817,23711.406030726896,8441260.546938775,2.0107485105688006,5976.754007178143,35971,141.4562191011236,451.0921449438202,5.121179751205444,2.543440078926086,3.741777027793791,43.26111726936859,4,32.60447974926862,1,35.75930267688801,2,35.75930267688801,2,-0.5021367935551238,-0.9665856381736289,2.8405504355510667,5.867142560283941,25.03929328918457,679.2200317382812,0.0018614653963595629,509,-0.21247630837552428,5184.941011235955,192336.12846575995,0.3305487031853098,780.9426942015045,2578.6123843847777,4529.479786746158,1612494.8040816323,2.0107485105688006,1713.8755273563736,9778,0.8213432496076254,0.21038213948794393,3.0299204645878044,5.820413536875406,38.37448501586914,35.20164489746094,0.044520407915115356,243,-0.21247630837552428,0.14607998815754453,-0.8770317047073579,3.140386314859235,5.793154939887093,46,47.908164978027344,0.023437337949872017,196,343,0,252,419,4442.9769777599995,2387.159454959075,23538,11,1.5819430254545452,17.401373279999998,5.739307070699439,0.5770168223814273,2.174904410287307,0.1277988074096334,0.597976486581477,6963.102673796791,121167.54881370404,0.08157235964403313,0.6982199058994166,2.808548583724548,1.6358624909051822,1.0093877895330952,4483.849612572301,78025.14083975399,76.11880500901525,12.93078597103454,2.5454545454545454,3984.029924242424,69327.59187043253,0.03931110027469657,0.5672296562563552,1.2288787502809346,1.1516429600567708,0.9986140082289839,742.0258426097707,12912.268670659148,-0.08705499154592251,-0.08705499154592251,397,1.6769087601007553,665.73277776,2.211841213453405,0.706911597305144,1.5545733439599196,0.45777082470055025,0.599653705686962,4629.174943717468,3081793.494018021,0.3327808167460333,2.2949951436707337,7.062469556945597,3.528861341344213,0.9418001056135726,3973.713719227672,2645431.4723244584,61.1943878283596,2.9817761416714985,5.188916876574307,0.05126848398216842,4590.0299691874125,3055733.401388783,0.06699627229165261,0.7826347955789138,1.4158001821132506,0.8682017511947904,0.9988202455730332,1348.0258875547593,897425.0186142192,0.05126848398216842,"CurrentSlice","Yes",1436.4229998588562,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",7,3,"C - 7",1,1,,,,226,0,38,7,20.318968799999997,0.3848129577551437,0.18380758275347478,2.9713076002350287,0.06417608595651669,3.0998074779051947,3.9531419712420397,11.94796136585652,25.75911393107649,19369.11282051282,393560.3990836799,0.18789614800465435,502.90916275967544,5972.1460380467925,15514.354199823163,3025299.068965517,2.0127282981919157,3639.3816892419245,25862,78.80127384615383,452.10540307692304,6.097458455657959,1.1207590996742247,-0.7211789462589656,17.51326888021962,2,8.754869465755096,1,8.754869465755096,1,8.754869465755096,1,-0.15644467662859732,-1.0350138232259485,5.338593030900723,5.24456275115616,21.449275970458984,377.1268005371094,0.0030928177293390036,276,-0.717055468291253,5035.28717948718,102311.84309904,0.18580847908749198,298.51646830895623,2501.722256307771,4246.218213969938,828012.5517241379,2.0127282981919157,935.5990525892602,7131,0.06454118410266545,-0.9573697157566587,5.44378698224852,5.230344347452366,30.831775665283203,29.542055130004883,0.038266099989414215,107,-0.717055468291253,0.9559353567591626,-0.6506920871567496,5.391190006574622,5.237453549304263,28.987577438354492,174.19876098632812,0.006279249209910631,161,47,0,310,67,1122.02387712,3320.8223439821695,33206,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31,2.60835728516129,80.85907583999999,2.2616726459952323,0.6771640695059558,1.7268322344839546,0.35136123713124656,0.7609599219763811,8448.730390187437,683156.5313718787,0.22302479317062868,2.128777748399784,10.70721414654703,8.212458328645669,0.9583750944514935,7659.661424670196,619353.1440461298,16.3460248938406,4.403458047672089,4.258064516129032,0.19407307625789894,9045.271041248185,731392.2571176427,0.05217857981225235,0.7651011881636955,2.346520737433332,1.9649016568074327,0.9959596635792528,5190.512420558529,419700.03746240406,0.19407307625789894,"CurrentSlice","Yes",1451.332999944687,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",7,4,"C - 7",1,1,,,,537,0,62,42,174.63893183999997,0.7137232648049704,0.7723098310019986,1.3516377926937937,0.3665084299018838,6.129298483292327,0.08748865263925835,21.98123422558433,55.451147586371924,33704.016706443916,5886033.476330879,0.18128391868674196,9220.167070946318,5284.126360726299,30766.362698005098,51564423.881856546,2.259435282548091,6109.996224027571,54669,183.93417494033412,445.7018627684964,9.70207487411499,7.493007806396484,-28.379113626889588,47.10719712550606,2,34.62565049779776,1,61.82624891786855,3,47.10719712550606,2,0.40756502598326677,0.607031373519149,0.655754979750628,7.357057110802836,130.2270050048828,1161.6368408203125,0.0009975526481866837,2652,-0.14647607937767146,5470.011336515513,955276.9369617599,0.38879488144358404,3286.928892432468,2420.9639367703758,4912.348889258129,8233096.738396624,2.259435282548091,2126.7124090756097,22190,1.918566306160331,7.404784087418614,0.7732355135821737,7.23326527896648,352.791748046875,41.62908935546875,0.04116443917155266,2324,-0.14647607937767146,1.6601258631800935,2.2546901293310935,0.6849471123996788,7.325203958096097,180.60240173339844,257.75567626953125,0.006594169419258833,2329,430,0,277,61,1111.3954934399999,3210.4069941871367,22190,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,1.5816047142857141,44.284932,2.6423055110570286,0.6279009148821373,1.6553154384091695,0.3710529312515332,0.5910927200060179,6844.183397297146,303094.19634483306,0.17818723042592174,2.251579996025899,12.272985980958973,7.36467114617905,0.9752799639105891,6286.520950039762,278398.1527890862,18.332176343078554,4.624597921287238,3.7857142857142856,0.18844075046825035,9106.682159626089,403288.8001846544,0.10013694892187856,1.049447268171263,3.099984590923874,2.3570285963749544,0.9967640583553284,6169.028151187271,273194.992181414,0.18844075046825035,"CurrentSlice","Yes",1466.2699999809265,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",8,1,"C - 8",1,1,,,,24,0,68,16,83.04727247999999,0.4454784013943897,0.25898479019091525,2.3545727642246304,0.10813247330387166,5.578645989614915,4.133833207697426,21.63723367531071,48.40099531041683,17744.163111668757,1473604.3488643197,0.22015165577181278,3409.8765735328616,5648.358733501994,14796.545877199818,11792847.064128255,1.3605258194929108,3906.4068893189983,25150,19.534057716436635,450.9268938519448,10.800938191223144,2.7972787113189694,2.8488818676074956,59.13423771252291,2,46.74435496864849,1,59.13423771252291,2,59.13423771252291,2,0.0704255285432804,-1.1142385800602355,1.3239736842519547,6.64258808412944,69.70726776123047,311.8055419921875,0.0038803338538855314,936,-0.08604188139929893,3257.0614805520704,270490.07225951995,0.1732129679729239,1294.699428416669,2393.9725611131935,2762.468294179325,2201687.230460922,1.3605258194929108,564.1652859167099,5309,0.31896058568038077,1.31015402224069,1.928499123910398,6.346702803000591,167.055908203125,13.640860557556152,0.09026642888784409,465,-0.08604188139929893,1.720238758144085,2.962978770288797,1.5380764441309867,6.535598555594621,48.598602294921875,132.7294921875,0.013378801755607128,573,0,0,224,118,1922.9038473599999,2059.0787905061234,19242,4,2.3184464399999998,9.273785759999999,6.322488271670926,0.4129513882945158,2.9651249332371137,0.003222591764055288,0.9266579591569827,7236.616071428572,67110.82707380143,0.12327106665182806,0.9983812255858615,3.360933913156207,2.162967036167146,1.0227818616712012,5083.459758803321,47142.91672272327,42.78513634325161,8.761944985810945,3,4163.976190476191,38615.823100217145,0.07171275374399909,0.7636437482761771,1.412658381075859,1.2743272414689186,0.99763368639545,1216.3589560072528,11280.252365268525,0.5485871145119608,0.5485871145119608,72,2.25911042,162.65595023999998,2.1525785321265443,0.6703018815456907,1.6662358193480378,0.4219005417038885,0.7224053870445841,5327.3123216167405,866519.0478978313,0.3027783936059281,3.757763534136097,10.771099296143278,5.362772358987408,0.9595764665802791,4832.719135243995,786070.523186143,33.420517032818545,3.162327953063747,3.5277777777777777,0.10392826671133316,4555.116408283649,740916.7878431927,0.06943412895400415,0.998669070093141,1.545355467126765,0.9951935100586248,0.9999945342612501,1607.4991738147114,261469.3056268468,0.10392826671133316,"CurrentSlice","Yes",2073.513000011444,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",8,2,"C - 8",1,1,,,,92,0,23,4,8.127587519999999,0.44238089797538455,0.18017112505655072,2.8746826502065446,0.061636325520898705,1.9283498931813283,7.002822630666492,7.108932578102003,15.194540689670175,12724.679487179486,103420.94619599998,0.22433524743427122,293.0994744223023,5798.702606097337,10005.671867440735,780442.4056603773,1.844547772886265,2854.5941212782054,18385,33.4636,452.4455846153846,3.7956305946350093,0.6838630345344543,0.7386047159788077,37.217650829487,2,30.296027247000833,1,65.74931443240618,2,65.74931443240618,2,0.24386860258814083,-0.9995297840934874,12.82051282051282,4.356708826689592,12.392857551574707,173.24107360839844,0.006874600891023874,112,0.26266169913645737,4835.666666666667,39302.30405088,0.29342486199157086,253.38780880435925,2621.60012212643,4299.9235607160135,335394.03773584904,1.844547772886265,1418.9048243039063,7202,0.05311065674525855,-1.3731022421501058,12.82051282051282,4.356708826689592,13.657142639160156,29.14285659790039,0.04803178831934929,70,0.26266169913645737,-0.3985024137461576,-1.1696114613534354,13.149243918474689,4.33893582205985,10.512195587158203,101.3536605834961,0.01261668186634779,82,48,0,127,97,492.7610433599999,1543.763374920702,11303,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11,1.8471789818181816,20.318968799999997,1.6646136423963378,0.6887501881733836,1.3491901985340407,0.4496869271887379,0.6171268419793836,4404.303510792181,89490.9056215168,0.30505795689206466,4.092064801439296,8.220924286047385,3.1157099736670397,0.9319707778526385,3868.5604048415285,78605.15816689038,17.810540518285887,3.463452552996325,2.5454545454545454,0.039550944210623544,4304.91976808275,87471.53045417662,0.08242767766703896,1.3294960049027145,1.5832687399737322,0.7522472259956113,0.9960359628836506,1585.9121483439985,32224.099461742673,0.039550944210623544,"CurrentSlice","Yes",2088.3499999046326,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",8,3,"C - 8",1,1,,,,267,0,41,28,88.25726447999999,0.7931795791751681,0.8810824802811125,1.1250558242131323,0.7025151177711177,3.975322136586266,4.834557492711951,13.344569178508536,37.39335227595509,27269.007083825265,2406687.97030416,0.12261570768588492,4898.547177133879,5312.397540547587,23869.95889105418,20217855.18072289,1.5017081739394518,3343.608601474644,33431,91.87756930342384,449.2175504132231,5.965400495910644,5.256009864807129,-16.238643503110744,47.86523562796312,4,40.55736330009808,1,47.86523562796312,4,46.229697583684256,2,-1.14704751305617,1.1653328426681835,1.2642718449308552,6.692599359547454,105.01988983154297,724.2079467773438,0.0015066820196807384,1106,-0.02347130596152829,3568.561983471074,314951.51878847997,0.1941521692025728,1471.9296765999263,2376.3351930819,2863.8752364831225,2425702.325301205,1.5017081739394518,692.8440500247448,7331,0.33891587488767067,2.7321140429614674,1.7075336384126767,6.465032511461057,209.3262481689453,16.97163200378418,0.0775698870420456,705,-0.02347130596152829,0.2708767863958199,-0.7566400552337451,1.236393744711873,6.7089664712489885,74.30811309814453,478.5413818359375,0.0025730004999786615,1269,136,0,224,168,2098.5847775999996,2117.193694141013,21919,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,178,1.527874058426966,271.96158239999994,2.0923342086244885,0.7331889991115521,1.5172231742494038,0.44712854675090236,0.5689192335268317,4645.988140809393,1263530.2865861563,0.3280070099997317,2.3782064952138473,6.5929835642117265,4.808484222279969,0.9412579039576878,3941.3013938214417,1071882.5637790046,26.000799209874252,3.051335039019617,4.831460674157303,-0.01941889407957297,5054.914264432973,1374742.4822515233,0.06299428891426309,0.7864036204071793,1.4871558088477523,1.1676716800062472,1.0009692674059862,1655.8660716618888,450331.95709163905,-0.01941889407957297,"CurrentSlice","Yes",2103.1829998493195,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"C",8,4,"C - 8",1,1,,,,38,0,53,41,160.67615328,0.7855922818771095,0.649239903256675,1.1585487878882699,0.5393814312927159,5.443057913582631,0.8915235252319678,20.07857517255644,50.69697434496562,26873.262645914398,4317892.468028639,0.11627700722580185,7142.922208039311,5261.061598762277,23176.262645914398,35737797,0.9950439337526941,3124.7425548598594,39084,19.783536964980545,446.9126225680933,9.130564803314208,5.927927009582519,-38.016608195448406,14.836367596583687,2,14.836367596583687,2,14.836367596583687,2,14.836367596583687,2,-0.17629581778622488,1.7869981349631807,0.7477613421685247,7.2407611081481145,212.0740509033203,722.7446899414062,0.0014802854275330901,2201,0.1472352428136194,2468.104409857328,396565.5224692799,0.2638919577614986,1626.6779412004978,2480.3974238093742,1441.7044098573278,2223108.1999999997,0.9950439337526941,651.3129046770384,5421,0.2620376313075613,1.2511225570693352,1.1573898839413836,6.903566383576797,468.3426208496094,9.180914878845215,0.1728401780128479,1509,0.1472352428136194,0.6096717917418608,0.8426723493023807,0.7982289243171315,7.1882043314361495,268.5962219238281,106.12186431884766,0.0110897496342659,1912,11,0,80,51,296.969544,2409.139298245614,22875,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,1.8886220999999999,15.108976799999999,1.2552664835621163,0.8262275279379163,1.3566427052584764,0.6026940515435452,0.6323702249686088,6551.432615564512,98985.44339532753,0.3245120707500031,3.2404937534650493,6.382923436832143,5.990247125451093,0.8992356476741268,5525.0326155645125,83477.58960780753,9.623106791214083,4.05404210883103,3.75,-0.049714620630147394,7260.5555095287855,109699.56474858259,0.1300488233461846,0.605398136458101,1.963904654998319,1.649636889967615,1.0248253405351726,3563.5555095287855,53841.67751898259,-0.049714620630147394,"CurrentSlice","Yes",2117.922999858856,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",6,4,"C - 6",1,1,,,,82,0,61,38,183.49591823999998,0.7658778103874454,0.69783527547704,1.1443160732030901,0.6411802113340499,5.780910715229055,17.371792061363315,19.39219488763456,54.870433655295436,26720.726859738785,4903144.311167999,0.12627602518294842,12228.550028055612,5257.997173365397,24170.61695313438,42564456.45446964,2.1484576614328916,3374.1871778470613,35048,36.4065608177172,447.84604770017035,9.481443443298339,6.616485697174072,3.9863934258462876,33.001759456135105,3,27.513126287322507,1,41.11377621547562,3,31.79998079281042,2,-0.8355066447365657,1.3326971154605154,0.6787867999990972,7.344606427470082,199.15142822265625,709.9046020507812,0.001545252394862473,2285,-0.087742627950852,5040.864849517319,924978.1242859199,0.22229362043962708,4554.715084522379,2346.2714392776847,4517.581994280495,7955461.891927951,2.1484576614328916,1120.5520975460608,27754,5.674635436702985,101.72514521443495,0.9432073111626409,7.0891068528028365,507.7373352050781,31.20313262939453,0.041125599294900894,1915,-0.087742627950852,2.18478093400911,6.933888319576333,0.718772340711633,7.302636113586639,227.6603546142578,85.23997497558594,0.017602767795324326,1796,0,0,173,683,4174.7665896,2084.861425184076,63438,1,0.72939888,0.72939888,0.6108652381980153,0,3.5903916041026207,0,0.6456,10783.42857142857,7865.420722559999,0.1400918004804444,1.4577662918626055,5.2146783054160935,4.260126004927248,1.003735891049759,8715.529472028971,6357.097435504923,28.47819898411777,,,3773.714285714286,2752.5429734399995,0.06562163768861755,1.0031623282469102,1.4798241738291085,1.3299930057212608,0.9662704421562689,1223.6043791098828,892.4956636858439,0.3895496584160447,0.3895496584160447,147,1.6480586938775508,242.26462799999996,2.1374214096714734,0.6842508017790171,1.3958728580883852,0.47015907713821087,0.5618210956337817,6557.170092594014,1588570.373215014,0.332317840856304,4.658459273734309,12.530833041771272,7.438087080209264,0.9269068883811225,6033.887237357189,1461797.446952287,106.80191815775953,3.2483195128797973,3.6598639455782314,-0.017920227822091392,4715.33409630453,1142358.660736933,0.07192057833218174,1.0739137205665967,1.8490709298813046,1.2436074043183958,0.9982829728615863,2165.224189700127,524557.2328543027,-0.017920227822091392,"CurrentSlice","Yes",1406.579999923706,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",7,1,"C - 7",1,1,,,,732,0,42,18,57.726711359999996,0.6776826502166555,0.501417035636128,1.4158511109588732,0.35436516478804425,3.606677206081068,8.119036483977789,13.270181973130585,32.717503448350875,32980.207581227434,1903838.9236344,0.17943010454447053,3395.753900528717,5930.2609939339145,29822.77900979886,16521819.571428569,1.883968179510624,5917.642094197978,42391,243.61844187725632,450.63287870036095,6.447225155639648,3.2327485256195065,5.520415419864152,41.337788896085314,3,34.778473090372536,1,47.48246502289388,2,34.778473090372536,1,-1.0569874107739445,0.13409920794174957,1.9028007663334592,6.2796296408685865,44.032508850097656,1026.075439453125,0.001182788866572082,769,-0.11902319907376355,4773.857400722021,275579.08824527997,0.1527008918719431,754.9004549011637,2533.937384208936,4193.000257864878,2322922.1428571427,1.883968179510624,728.9722827597287,8476,0.38304037022120013,3.767042383989491,2.326369430072072,6.129771673966463,114.08780670166016,27.343902587890625,0.04403524100780487,410,-0.11902319907376355,1.0147212334637037,1.1304861886556097,2.573994187334645,6.0583056779478035,112.09933471679688,24.771522521972656,0.04433746635913849,302,674,0,197,210,1789.4238523199997,3544.383276072905,57481,2,50.38062263999999,100.76124527999998,1.058367034835629,0.9139925705957419,1.0103097245094683,0.8651045611603954,2.314107478721286,14825.008938428875,1493786.361923224,0.2846271370485679,2.858496513022908,7.04515020835045,4.999888516016658,0.9699584199951987,12720.723224143161,1281755.9129268813,58.32387195701693,10.257309132773099,1,6368.07762208068,641655.4312405505,0.09018190048517194,1.2519910829082217,2.016855639967639,1.8755295174309057,0.9773722172968036,3210.6490506521086,323508.99650075624,0.25201351787646903,0.25201351787646903,91,2.274075629010989,206.94088223999998,2.006416153907803,0.712510726803975,1.6689834120602767,0.4549113828915771,0.7207928778571138,8547.044010711596,1768732.8281207655,0.29378823421045486,2.406622931472529,14.714537155676627,8.305984174556366,0.9502574020322848,7966.186867854452,1648529.7385225026,32.225780946389484,3.5823873261541483,4.835164835164835,0.08447157978618205,6284.319662394814,1300482.6552141616,0.06658032004796866,0.8512508375944688,1.9903283701368066,1.317847094733402,0.998829298623297,3126.8910909662427,647081.6010329503,0.08447157978618205,"CurrentSlice","Yes",1421.4930000305176,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",7,2,"C - 7",1,1,,,,695,0,41,57,176.09772959999998,0.7907382141709841,0.7914668215856395,1.137889464365976,0.5697568194245719,5.647249488114687,1.9064833917531536,19.004121801335625,52.90119062083368,31366.604142011834,5523587.77467024,0.10864443769351825,8870.029696788783,5999.670293593817,,,1.5262658136705862,3407.807069364056,39167,231.00866840236682,444.83501751479287,8.855766625213622,7.009045463562011,75.56379594920611,20.080457455636022,2,16.837749550228754,1,30.996363014492204,3,16.837749550228754,1,-0.9607374511510847,1.6745907022703364,0.6813486922726796,7.329637628459278,213.573974609375,971.2567749023438,0.001096410327591002,2352,-0.29044733912236964,3935.647928994083,693058.6648007999,0.31904917713117703,2562.8926718738003,2578.6123843847777,,,1.5262658136705862,1255.6652332235833,15238,3.3559227858160168,21.905760877325974,0.946045306536886,7.0789523797461635,482.359619140625,22.060197830200195,0.06866417080163956,1927,-0.29044733912236964,2.4536376879129307,9.879299384323453,0.7191624943104233,7.2915785214639905,244.84471130371094,190.41908264160156,0.006809819955378771,2138,614,0,129,89,703.2447201599999,2930.865757890058,44579,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,1.7453473199999998,34.906946399999995,2.354608422984383,0.7021714613896405,1.2271324272746706,0.5082779190291015,0.5323305000764194,9981.814977639213,348434.68039916916,0.3456718997255094,3.140347108500839,,7.609226572620004,0.8910117592992952,9981.814977639213,348434.68039916916,10.96271326618582,5.0610785210396845,4,0.13495888378217766,8453.625311031621,295090.2456178641,0.13462377136391698,0.7944782917264972,,1.5989987752262071,1.0140261355184317,8453.625311031621,295090.2456178641,0.13495888378217766,"CurrentSlice","Yes",1436.4229998588562,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",7,3,"C - 7",1,1,,,,419,0,60,30,110.24343071999999,0.5984243926183541,0.9759486934966836,1.411356969874078,0.3388385427866869,4.976280465943602,17.373092643998156,20.140754134838147,48.11457434496562,29985.51323251418,3305705.85065232,0.1070194137894806,5206.265241012644,5972.1460380467925,25296.029899180845,26763199.633333333,0.6843028731394358,3209.032048320381,36441,146.72816030245744,448.8555357277882,7.12259510192871,6.951287384033202,23.02745302967541,29.141840350667835,4,20.23947900952744,1,28.925330827513957,4,27.20055993843421,3,-0.9286961337161788,1.042755752864247,1.0452364020997638,6.8923904405959355,138.2696075439453,877.031005859375,0.0012135639553889632,1517,-0.19583192973607175,1711.9357277882798,188729.66780352,0.32153948455994763,775.0107040488514,2501.722256307771,590.7023944549464,624963.1333333333,0.6843028731394358,550.4549315128023,6979,2.672667205770714,16.67835645202936,1.9082264571667482,6.418896049531752,219.6234893798828,6.060240745544434,0.33546182513237,664,-0.19583192973607175,1.131471550350657,0.7970791979733787,1.047023130992242,6.891080143468223,107.79584503173828,527.053466796875,0.0021414372604340315,1347,416,0,435,393,9035.79332544,2329.409416947276,36918,1,0.10419983999999999,0.10419983999999999,12.566370614359172,1,3.1415925460576575,0,0.2282540689670175,7905,823.6997351999999,0,0,0.5957764312200416,2.9429922357626395,1,0,0,99.06845636645296,,,3792,395.12579328,0,0,0.8086178647967615,1.2669901839942768,1,0,0,0,0,532,1.7717890087218042,942.5917526399999,2.1846591015508623,0.7210953462343354,1.396892142115752,0.5057511260806838,0.5756953740891044,5396.277094853457,5086486.284569006,0.31134393022040197,2.4714446426884176,4.812804734239192,5.245368087822951,0.9308126840364024,4275.043761520124,4029620.991783951,83.24293129373888,3.3606237285573615,4.503759398496241,0.10380010965108773,6791.139266244168,6401271.863391413,0.0560782826529132,0.9023395859987652,1.4481636426708344,1.4752372521511317,0.9977722660120588,2101.655932910834,1981003.549248677,0.10380010965108773,"CurrentSlice","Yes",1451.332999944687,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",7,4,"C - 7",1,1,,,,815,0,74,48,253.83081023999998,0.7730419112856823,0.8822646157873515,1.2131341028007856,0.44189680339606063,7.000621993809131,2.6055475712557747,24.270181200806885,64.23556965538245,25409.898604269292,6449815.150837919,0.13283984054043035,12356.907080700186,5284.126360726299,22542.799974132307,54914260.7369863,1.666806797429777,3375.4468787396363,34037,275.1970709359606,445.1862541871921,10.499144375610351,9.263023578643798,19.274559580542043,54.64797928052086,3,53.45277325851157,1,73.95185559027075,5,53.45277325851157,1,-0.3156171219788396,0.1310995638879917,0.5031937467813127,7.654501584188937,296.55889892578125,648.3551635742188,0.001678131753578782,3573,0.31203295204461623,4035.2791461412153,1024278.1752095999,0.6373340218844377,3710.560555482956,2420.9639367703758,3480.372296826147,8478186.915068494,1.666806797429777,2571.8206876365803,20552,2.628526337630315,8.425913144427783,0.6487930090783836,7.455823491672968,535.3108520507812,29.970531463623047,0.09001609683036804,3088,0.31203295204461623,1.9887603292463198,5.215334023058611,0.529145467144448,7.609786976259681,325.2325439453125,150.45924377441406,0.009842476807534695,3251,705,0,375,105,2085.0387984,2817.92183908046,34811,3,0.7641321599999998,2.29239648,0.5932694698207663,0,3.7670024929029924,0,0.6768471285122347,9546.291666666666,21883.885413719996,0.02537902049825198,1.0292472742802052,3.8745565542313183,3.4234513818114367,0.987904838762779,7082.450570776255,16235.784758221474,21.609324812428323,27.56000662400122,2,5447.208333333333,12487.161209159998,0.02791303334484123,1.0339900376914657,1.8999026667851577,1.850466454193789,0.9996281622962847,2580.109703196347,5914.63440162115,0.3844923563047315,0.3844923563047315,78,1.6070821476923076,125.35240751999999,2.22411819990278,0.679473595740325,1.5926500252840943,0.4108252935118333,0.5899831520871505,8070.805635983217,1011694.917096481,0.2572128830208146,2.9387379008535306,14.544433261087258,8.684575784047224,0.9557090562026233,7515.898786668149,942136.0075854993,27.93305725933894,3.5985408398996794,4.589743589743589,0.1590751967313313,6393.723955809925,801468.6908790722,0.07010219562476622,0.9174646754362927,2.230032789456023,1.65484969575246,1.0002180203153643,3526.625325672939,442070.974994107,0.1590751967313313,"CurrentSlice","Yes",1466.2699999809265,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",8,1,"C - 8",1,1,,,,248,0,63,44,199.85529311999997,0.5614303715007457,0.845502264538055,1.1444206966950152,0.6764218662205155,6.0333806966560735,16.20238569739332,21.86716867269286,66.88285572430597,26695.82481751825,5335301.89398528,0.14509566383760317,11544.845524820888,5648.358733501994,23579.93530365726,45226315.912414625,1.2193725478268476,3873.4484235901714,37701,90.93417372262773,446.7169958289885,9.214563681793212,7.790934459686278,30.22990676370887,50.45426660087318,2,29.384412745349017,1,64.11615394024162,3,50.45426660087318,2,-0.6892101465104954,1.370721433094503,0.6170617855539041,7.440119550800861,215.8380889892578,708.5005493164062,0.0015898430719971657,2625,0.06382975207853084,2919.1444212721585,583406.4639729599,0.32695007962097433,2730.766163718449,2393.9725611131935,2376.4238507619134,4557980.94576135,1.2193725478268476,954.4145009600553,7461,0.5511959937515054,1.0548117508658308,0.8671485004039444,7.16852291727321,508.2861633300781,11.58183765411377,0.14465095102787018,1894,0.06382975207853084,1.502695699515369,6.20090549949925,0.6703411291523909,7.375232274213815,246.81256103515625,102.58396911621094,0.012226279824972153,1846,159,0,806,287,5154.45348528,2083.9982412517434,54838,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222,2.3839233664864863,529.23098736,1.782867865803855,0.7001399033667692,1.7272985413399427,0.40644501179551673,0.7564573346049558,5294.935467421826,2802243.9254311356,0.33573343213923507,3.4109256879733976,9.75628298452688,5.330179995659485,0.9434853754877873,4752.214896911581,2515019.382039416,101.8714970025146,3.396740677887473,4.1441441441441444,0.1094679067459517,4896.555287681035,2591408.7895622626,0.06818824463830697,0.9526482585801564,1.5714791124328322,1.0697904525736466,0.9996906954991162,1780.665773820047,942383.5056369418,0.1094679067459517,"CurrentSlice","Yes",2073.513000011444,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",8,2,"C - 8",1,1,,,,383,0,59,45,168.80374079999999,0.6879309402351464,0.5875059861644146,1.276319996274506,0.4350994836912957,5.855728141281796,10.79772233118645,22.02858721933842,55.52947200017403,25515.063580246915,4307038.17909552,0.15435657159884167,8134.56940558558,5798.702606097337,22356.763125011712,36217956.26251897,1.9611241584636259,3938.4177383733804,33423,134.51195555555555,446.86020962962954,10.097546864318847,5.9323692283630365,37.37835670123826,48.611471113655604,1,48.611471113655604,1,91.64159082862814,6,79.41466700005425,3,-0.7308527295462294,0.3175638454708518,0.6988263984148758,7.301814008883407,154.4279022216797,630.1441650390625,0.0018129808595404029,2157,0.25931274009890676,5141.283333333334,867867.85917936,0.33643207107032985,2955.802799846899,2621.60012212643,4496.324304501771,7284045.373292869,1.9611241584636259,1729.6925997927026,13918,1.3996475564500923,3.660946748528678,0.82533150434385,7.172660734402419,321.5935974121094,34.97433090209961,0.04741526395082474,1870,0.25931274009890676,0.7910209179734706,0.18980763125836742,0.7796067672610882,7.218790764997366,184.94784545898438,209.37538146972656,0.00543364929035306,1649,318,0,419,382,7228.134501119999,2872.0678554953292,51309,5,1.0419983999999998,5.209992,3.698480593160941,0.7853692836118432,1.5560201025044285,0.43183314806915185,0.41859829576108004,18723.804333333333,97550.87078623199,0.07737104072259778,1.6259473263288473,3.2284693406727296,4.285354138572256,1.0006610858637386,12924.21252756702,67335.04387492394,37.28650804062448,14.145002050647108,3.6,3597.4120000000003,18742.487740703997,0.05370546249229306,1.0410454218927148,1.139034126419772,1.1283873696379878,1.0079285397212403,439.1115447647953,2287.7676353322254,-0.010016268152503578,-0.010016268152503578,679,1.4393082464801177,977.2902993599998,2.301638225903109,0.6827940318785113,1.4495103992700604,0.4529144400591965,0.5322685686128332,4652.021278375805,4546375.26777298,0.279389992611154,1.5210934942108887,7.21289426214192,3.290951465817522,0.960798760669369,4007.062249544242,3916063.0654112464,78.34936558332554,2.8078890982312603,5.075110456553755,0.11869596565305034,5170.7871534384685,5053360.125110722,0.061979995860803085,0.7048800819168299,1.63720558785576,0.9035500083478123,0.999468607732285,2012.4866982032636,1966783.727745085,0.11869596565305034,"CurrentSlice","Yes",2088.3499999046326,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",8,3,"C - 8",1,1,,,,591,0,16,4,5.730991199999999,0.6319403958617094,0.2596644340644944,2.067040558834779,0.1252444810398593,1.373091347571849,26.204826921109913,4.852748070938774,10.675340689670175,24421.872727272726,139961.53768751997,0.21438793724412306,260.51692437070295,5312.397540547587,20424.180419580418,1123329.923076923,1.499076856362627,5235.7549176385055,31666,193.1517818181818,452.4540872727273,2.6564785388946532,0.6897929964065551,0.6649964725972803,54.8302061286355,5,36.81038190152436,1,54.89936081345045,4,49.5188870015053,2,-0.36649399079359124,-1.0651156182894803,18.18181818181818,4.007333185232471,6.818181991577148,597.0908813476562,0.002020083134993911,99,-0.3975064276636918,3562.309090909091,20415.562051679997,0.23692428653201264,87.31568701781563,2376.3351930819,2632.821911421912,144805.20512820515,1.499076856362627,843.9975397701389,6188,1.3496515626001024,1.4604609103232358,18.18181818181818,4.007333185232471,16.86206817626953,19.775861740112305,0.062470972537994385,58,-0.3975064276636918,0.6895308175116235,-0.1991082787329561,18.84297520661157,3.9821278332121097,14.452054977416992,127.38356018066406,0.008388626389205456,73,430,0,196,204,1979.9011598399998,2247.7085942845115,28386,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,141,1.535654379574468,216.52726751999998,2.1079585209673875,0.7206832876695898,1.5282756681683347,0.4695957646352826,0.5750977246905111,5719.74531152017,1238480.8232137933,0.3345536200826781,2.6442008767011886,6.153657024807907,5.91979666162323,0.9444204907413621,4790.25813203299,1037221.5040445626,39.70420153669619,3.1641776421478425,5.0212765957446805,0.04887204191178695,5478.931233650031,1186338.0089522237,0.06421677377402525,0.8262019802236057,1.370523495044264,1.2656184662218937,0.998495479235094,1481.238925957723,320728.61718188535,0.04887204191178695,"CurrentSlice","Yes",2103.1829998493195,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"C",8,4,"C - 8",1,1,,,,1342,0,34,19,49.80752352,0.7664558272972072,0.5920185912378717,1.2258967562306804,0.5081359957668945,3.1173422383344405,1.8035510086063247,10.696327609044143,28.576487172482807,29891.751046025103,1488834.0932788798,0.16843325366636536,1737.6914467279762,5261.061598762277,,,0.6666607802989925,5034.764886466988,38348,438.69938158995814,450.54911297071123,5.363020236968993,3.1750076854705807,2.9725601438450253,44.13670937721617,3,34.10742289514354,1,54.184443012598564,3,44.747534883888676,2,-0.7525748987549674,-0.07258054495968214,2.1708303426060467,6.143508955817651,45.20000076293945,874.8026733398438,0.0013248675968497992,740,-0.5213145199575845,1653.5836820083682,82360.90813391999,0.3331885179416382,423.9852044972335,2480.3974238093742,,,0.6666607802989925,550.9550963008453,3854,0.6543759100203119,0.3474403778243249,2.5997444022338545,6.010426962913681,82.29707336425781,5.355648517608643,0.3517259359359741,239,-0.5213145199575845,-0.2440054459694861,-1.0176519519816951,2.144570298139038,6.152209548042253,34.754966735839844,522.5165405273438,0.0024360958486795425,604,1332,0,90,30,190.06050815999998,1809.0400219298247,4879,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,0.41679935999999995,0.8335987199999999,3.141592653589793,1,0.7853981365144144,1,0.22825406896701753,3992.75,3328.3512892799995,0.16042291513977075,2.5102004309582875,,3.6507372682614347,0.9999999999999998,3992.75,3328.3512892799995,8.816262286499697,2.350019472259751,1,0.4211624065032804,7997.375,6666.601563359999,0.045703761478581836,0.6942874125874091,,1.8170462033642623,0.9999999999999998,7997.375,6666.601563359999,0.4211624065032804,"CurrentSlice","Yes",2117.922999858856,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",6,4,"C - 6",1,1,,,,323,0,47,29,110.13923087999999,0.787886550887181,0.8242386771195936,1.1737323685842567,0.5302993292202489,4.535922522505557,9.935476568619242,16.029872283957847,41.912552275955086,31371.714285714286,3455256.4828156796,0.14915303502087465,7787.238157802745,5257.997173365397,,,0.6513359660238107,4679.1863995220165,45263,112.46663500473036,448.90577483443707,7.000628952026367,5.7701891464233395,16.504421936261288,16.870372956283322,1,16.870372956283322,1,52.55209666190046,3,16.870372956283322,1,-0.6841114965766434,0.9197179228877186,1.0284189110932298,6.902859294657831,99.65705108642578,966.3659057617188,0.001174869597889483,1525,-0.07854019035510838,1528.2109744560075,168315.98134896,0.23662735277881827,1008.8307973167696,2346.2714392776847,,,0.6513359660238107,361.61651737306335,2861,-0.1080305451884391,1.6054052571572708,2.2152626674984717,6.323932220163586,219.57867431640625,4.267343521118164,0.4332111179828644,591,-0.07854019035510838,0.49162203771198165,-0.14122667712172143,1.0642211360224982,6.881701149106182,97.18377685546875,360.56207275390625,0.0030649614054709673,1023,323,0,300,136,2508.40274832,1597.9754081335936,10645,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,193,1.1300013736787562,218.09026511999997,2.959001893974636,0.6544150233823787,1.4627364364349975,0.41307855970526125,0.4654745767078178,3732.285477451307,813975.1292808813,0.29983972779797974,2.4216902063670176,,4.233695938563181,0.9611636565150801,3732.285477451307,813975.1292808813,45.342653391563005,2.975053850470416,4.829015544041451,0.011288718111373384,4287.466108676827,935054.620334344,0.05846531093224841,0.8045322507378027,,1.1307628451382443,0.9993406097553139,4287.466108676827,935054.620334344,0.011288718111373384,"CurrentSlice","Yes",1406.579999923706,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",7,1,"C - 7",1,1,,,,1259,0,40,16,50.432722559999995,0.6723233889673916,0.4418064300429342,1.4906277283666027,0.2989163549711016,3.4590023366429357,5.446460439592711,12.605742976913339,30.70237903454877,28037.39256198347,1414002.0403843198,0.17484576180554984,2476.157598018361,5930.2609939339145,,,1.6857001693510463,4902.219261541257,37762,413.13931487603304,450.88023719008265,6.3275493804931635,2.795552002716064,4.038420885999686,55.48295082320778,4,50.71049741177907,1,54.106163881585516,3,50.71049741177907,1,-0.8760552522105898,0.4060659645188558,2.160030052592036,6.15057821669118,40.79532241821289,756.6885986328125,0.0015934682451188564,684,-0.512687557561521,4271.4586776859505,215421.29041823998,0.28986947712306405,723.7557882899864,2533.937384208936,,,1.6857001693510463,1238.1654934536011,11283,1.6104116252348128,5.188078226862373,2.424697766546001,6.0689192490769335,70.71839141845703,26.66666603088379,0.0567975752055645,348,-0.512687557561521,-0.5563191295034094,0.10165824394663892,2.32224574824124,6.101886059379117,79.64676666259766,82.26616668701172,0.013566197827458382,402,1244,0,85,144,888.4078358399998,2936.7945109078114,32125,2,1.14619824,2.29239648,0.9037704772552204,0.5510826458713546,1.9732317289972037,0.2314751461243269,0.5907164367908666,8849.090909090908,20285.624851199995,0.1530136830889593,1.279558083205394,,2.9844479822782475,0.9696545567259978,8849.090909090908,20285.624851199995,29.707227580526727,35.36127272727273,1,4662.545454545454,10688.402787839997,0.04334836945985013,0.8484468602922599,,1.3732153006492525,1.0039750990724294,4662.545454545454,10688.402787839997,0.16745956328553227,0.16745956328553227,80,1.9810994579999996,158.48795664,2.254748752553657,0.6487412411942934,1.7485284854786758,0.3840771519841718,0.6851563641131979,5618.5722180278635,890476.0300695086,0.28522557560446965,2.76461580033305,,5.460106660040014,0.9707179510392769,5618.5722180278635,890476.0300695086,22.333219958977086,2.926164476468678,4.525,0.13183879719210473,5876.733080059863,931391.4175773811,0.06214587142878404,0.7811213225639785,,1.2323745500128265,1.0046624556220296,5876.733080059863,931391.4175773811,0.13183879719210473,"CurrentSlice","Yes",1421.4930000305176,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",7,2,"C - 7",1,1,,,,732,0,61,33,120.87181439999999,0.5980308018615128,0.88260718939594,1.4682788051303182,0.30119625159565844,5.314676676776001,2.050818668987584,20.944720728622762,50.39711503463579,35307.93965517241,4267734.728846399,0.132427114209529,4950.50869075535,5999.670293593817,31902.806953750613,37007256.06635071,1.6060933649659077,4675.728557218675,43968,247.4484620689655,448.47411,7.9689760025024405,7.033475511932372,25.0600416382684,23.698636103609154,3,16.837749550228754,1,23.698636103609154,3,23.698636103609154,3,-1.075025793322799,0.6565084311695188,0.9453032104637337,6.9899947340957915,112.58785247802734,1195.8748779296875,0.0009218938066624105,1679,-0.15774437092693525,4141.49224137931,500589.68153903994,0.2298863896508875,1045.7043676331743,2578.6123843847777,3507.3974546494524,4068581.047393365,1.6060933649659077,952.0726991378516,10999,1.1496329023707152,5.418357863023413,1.1652794292508917,6.83203912213759,300.4604797363281,21.480239868164062,0.061554137617349625,1164,-0.15774437092693525,-0.07855617976660995,-0.43007554620498567,1.044887039239001,6.915132321446183,201.02978515625,178.2635955810547,0.0060718911699950695,1343,727,0,139,70,601.2330767999999,4503.154072790295,39364,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,2.967214491428571,62.31150431999999,1.9740200969833466,0.7287457912674592,1.848178766674705,0.4113179557114144,0.8643042919414198,10733.991981989935,668851.1877566112,0.2556052522542975,4.2928375788403645,16.928055878439068,8.182617810750616,0.9656992620110769,10099.897195260077,629339.787714004,16.211912107164373,4.1033705473480175,2.6666666666666665,-0.11321506800391337,8080.901345619294,503533.1191070505,0.07136931510943752,0.8074439485462028,2.373153135043795,1.5284982334747257,1.0057625080466093,4675.768644197493,291354.1780722326,-0.11321506800391337,"CurrentSlice","Yes",1436.4229998588562,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",7,3,"C - 7",1,1,,,,499,0,90,40,269.46078623999995,0.6523275609456665,0.5772805857449674,1.5206433761919873,0.2694720924741365,8.07553909656003,0.25494116817318907,29.51811413488334,72.04765572430597,40110.493426140754,10808205.095082236,0.13878627698056195,9529.48135696712,5972.1460380467925,,,0.8414461570192148,5566.78605046738,63131,176.77544083526678,447.58491832946635,13.987888764953611,8.07493661956787,11.69985863651378,22.651423682423207,2,15.22871336251376,1,22.651423682423207,2,22.651423682423207,2,-0.08477353011517279,1.2697066345804098,0.4438199861351115,7.758146811754442,208.11270141601562,1610.4173583984375,0.0006842641159892082,3922,-0.06629059662264884,2105.064578499613,567232.35640848,0.6223522957891202,2194.645399958649,2501.722256307771,,,0.8414461570192148,1310.0917732135908,11428,2.912643509687391,10.94068294736104,0.8676022774784086,7.2278436319758566,503.0038146972656,11.5121488571167,0.27118411660194397,2099,-0.06629059662264884,0.6204503570828237,1.1446891323118074,0.4656521013560435,7.723089006772494,257.17254638671875,594.9741821289062,0.0018745253328233957,3408,475,0,132,65,520.9992,2286.2982,15435,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,2.315552,20.839968,1.696835566754833,0.7132728885853492,1.4613512159456914,0.5561727008992136,0.6930318972617304,5152.295787721219,107373.67934264499,0.3357435489194325,2.4572471356757624,,5.008209813708874,0.9223956268247377,5152.295787721219,107373.67934264499,11.679291865987011,4.328682261030778,2.4444444444444446,-0.22015232052950082,11087.647726236088,231066.22381003282,0.08789588680864183,0.7253379803453073,,2.4085665634594533,1.0086619265256342,11087.647726236088,231066.22381003282,-0.22015232052950082,"CurrentSlice","Yes",1451.332999944687,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",7,4,"C - 7",1,1,,,,242,23,67,20,109.409832,0.5600111747671769,0.31082658839740324,1.9022728522598407,0.15176398832501958,5.755388218061896,0.06322305370837782,21.460738402953424,49.54898482769122,46994.15904761905,5141623.04638128,0.19044097795958173,9908.030446446222,5284.126360726299,44265.37186226436,46478640.45537758,1.785513900579329,8949.613607416697,64092,88.51329714285713,442.3159314285714,10.991890182495116,3.416571725463867,-3.4465102610112823,35.9354581667006,4,21.821794936862865,2,29.439744108622314,3,21.821794936862865,2,-0.5480919695670535,-0.2230436297362477,0.9759637188208617,6.939381798680561,57.8048095703125,2181.96630859375,0.0005526678287424147,1747,-0.3262368041620017,4322.664761904762,472942.02539231995,0.5079982214364497,1907.9503796658837,2420.9639367703758,3812.454235588972,4003076.9473684207,1.785513900579329,2195.906010913633,16044,1.9595348767853886,6.050044150534948,1.1138321995464853,6.841506338877661,246.63067626953125,29.116933822631836,0.07535413652658463,1565,-0.3262368041620017,2.4506716994955027,7.377125144929893,1.3315192743764173,6.704792794551183,178.89373779296875,37.83234786987305,0.040858760476112366,847,77,0,374,78,1749.9321129599998,2500.4163391687507,27562,2,0.8856986399999999,1.7713972799999997,0.9285384184932446,0.14230777655479074,2.706263221595979,0.018950521258770614,0.6116060879636404,5457.038461538461,9666.583087624615,0.07224503163915577,1.2610739817028866,2.436161085735717,1.956980418583342,0.9591363464972744,3217.0230153142047,5698.62581902498,39.43464510839835,6.933400412035168,1,3710.9423076923076,6573.553110083076,0.10481996843445276,0.9826757748031076,1.3599236787715838,1.2606410171264673,0.9695694764838478,982.1551223376164,1739.7869122469206,0.11297461174824151,0.11297461174824151,33,1.1746163781818182,38.76234048,3.1536984989301424,0.6521275840763164,1.569690233810107,0.33410592509795434,0.476642421334478,10467.946968482598,405762.12451890623,0.17230083250312106,4.080835053425232,20.516916897170347,11.264015372376086,0.9765745855763139,9957.736442166808,385985.17038137355,19.359404228386108,4.871783152922901,3.5757575757575757,0.15893983071732135,11273.576171104347,436990.1979715614,0.11021488591582246,1.4355272142653261,4.131350451808499,2.9178729369198977,0.9989835714653478,8544.788985749656,331216.019995382,0.15893983071732135,"CurrentSlice","Yes",1466.2699999809265,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",8,1,"C - 8",1,1,,,,529,0,73,41,238.40923391999996,0.7519667488103599,0.6489327187483607,1.198489760470587,0.4692559439550419,6.743552680047762,2.630318619063572,23.511277106954438,63.12002317256983,27514.277534965036,6559657.828973279,0.13563519154952977,10467.928119647071,5648.358733501994,23506.147905335405,53782066.40740741,1.470687998048546,3731.9043038019063,35883,182.37268846153844,446.2084998251748,11.314212405395507,7.342162616729736,9.968767948638765,32.596276088167244,1,32.596276088167244,1,76.599684574782,4,61.11340565335026,2,-0.8177514560956364,0.9962163714333685,0.5356313267152428,7.589277838206585,265.46771240234375,755.0908813476562,0.0014588689664378762,3190,0.023247893127767462,3520.786713286713,839388.0631103999,0.30836466460911816,2916.46769988846,2393.9725611131935,2571.5830095830097,5883781.925925926,1.470687998048546,1085.6862140028968,10815,1.625056857326392,6.015497148596927,0.7824343488679153,7.28698050487523,715.8184814453125,17.78839874267578,0.08207406848669052,2793,0.023247893127767462,1.7608554120911983,4.038745913555026,0.5329569905618857,7.590600067341836,251.68145751953125,240.1207275390625,0.005430000368505716,2750,368,0,253,93,1380.4394803199998,2893.1248490338166,30826,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38,2.415791027368421,91.80005904,2.2176132337603467,0.6791967912177113,1.7500237938795018,0.3992133867431461,0.7492127066453687,5912.541239382371,542771.6348517364,0.2628830382292754,2.4279348481608167,6.228948766542092,5.951896719340506,0.948768688406163,4963.337535678667,455634.67881074967,19.450295092644808,3.476057700774612,4.2631578947368425,-0.004393017502468693,6915.3643896807425,634830.8592558056,0.07164406352546476,0.8601585927664314,1.725334514772107,1.5108561765370903,1.000286318233277,2907.234760051113,266884.3226158323,-0.004393017502468693,"CurrentSlice","Yes",2073.513000011444,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",8,2,"C - 8",1,1,,,,714,0,33,16,38.86654032,0.6922851910196013,0.5356793320739185,1.2816257947657013,0.44562156455460367,2.815649672933297,3.707071867984347,10.334642519216617,26.5613627586807,53166.581769437,2066401.0940183997,0.2241969156914089,2355.4121028769114,5798.702606097337,,,2.0364177119131774,11919.783650562864,65318,235.9192021447721,450.8918863270777,4.963839009475707,2.659025965118408,0.47105371673562196,26.719562211279197,3,6.172819352379431,1,23.851679527412546,2,6.172819352379431,1,-0.691339821916571,-0.6750033685576868,49.2708206053375,4.963571245677094,15.482625007629395,2455.04052734375,0.0005255553987808526,518,-0.24459110668368933,5338.672922252011,207495.74638799997,0.28668191248264496,509.33520021167755,2621.60012212643,,,2.0364177119131774,1530.5009634705175,17904,3.7692345757024,20.463655195517457,3.126594743008287,5.81330499727746,44.8521728515625,47.3304328918457,0.03041992522776127,230,-0.24459110668368933,0.5326389049693648,-0.5111875209188681,2.8678420746213944,5.873262530382265,51.434783935546875,134.75,0.00793152954429388,276,714,0,82,74,202.04348975999997,4184.551315110882,24473,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11,2.775504829090909,30.530553119999997,1.0588107385872612,0.7014818355530056,1.6529858367274515,0.39047516856124315,0.8220393020186111,6882.634305963456,210130.63228375162,0.2898320879545841,2.4782365852423505,,4.868940639455654,0.9467622672863946,6882.634305963456,210130.63228375162,15.575028409068409,4.197546990841082,3.6363636363636362,0.1750060795485812,8676.655475747619,264903.0909062515,0.10553084049878471,0.8215232176980236,,1.5161699553480072,0.9968337844597202,8676.655475747619,264903.0909062515,0.1750060795485812,"CurrentSlice","Yes",2088.3499999046326,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",8,3,"C - 8",1,1,,,,713,0,64,30,161.82235151999998,0.7624914379743758,0.4948021292322665,1.3033737253154472,0.36288324933118044,5.7938038723171434,0.5022998354647411,20.42842037946155,51.64243365529544,36443.00708306504,5897293.102641599,0.12498522083278946,5715.7785411384075,5312.397540547587,,,1.3140681757014698,4554.837288087794,48244,240.04077295556985,448.2463572440438,10.385295510864257,5.138666331481933,4.4456749061509395,28.38625697005564,4,11.551931513765268,1,26.1685816974965,3,15.714167814057703,2,-1.3098532859869598,2.7299242178782013,0.7284988156193132,7.259671579911435,187.95262145996094,1308.1441650390625,0.0008377551566809416,2448,-0.0451856382618111,3122.666452028332,505317.22827983997,0.30706176681158875,1406.5867393859837,2376.3351930819,,,1.3140681757014698,958.8514779230949,8417,1.4642096807561893,3.4951309261923784,1.0668340652182657,6.9552099153429845,389.5928039550781,14.611828804016113,0.10269235819578171,1471,-0.0451856382618111,0.4417137706360856,-0.8094213045009764,0.7210355380546304,7.266038296329989,163.70790100097656,271.3020324707031,0.004261815920472145,1811,699,0,78,44,230.80264559999998,3219.812189616253,15233,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,3.6469943999999996,14.587977599999999,1.1465388815890385,0.6046287749472412,1.772453204266741,0.29069979088194914,0.9752808787354635,5680.728021978022,82870.33313630769,0.29097671367065314,2.0632565065531434,,5.879414720156014,0.9617949302930363,5680.728021978022,82870.33313630769,9.989926265835997,6.927855607368458,2.5,-0.33576427459281927,13291.103479853478,193890.31984338458,0.2587818824639881,0.6239700323897852,,3.0702093680709104,1.0660882255161443,13291.103479853478,193890.31984338458,-0.33576427459281927,"CurrentSlice","Yes",2103.1829998493195,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"C",8,4,"C - 8",1,1,,,,1463,0,4,2,0.6251990399999999,1.6170362533579417,0.4714045226573944,1.1926417797322924,0.3902439024390245,0.3444880839269366,15.956802316995255,0.9683999999999999,2.20421627586807,23633.666666666668,14775.745711679998,0.12278021575299364,11.019011830528305,5261.061598762277,,,1.2624992954518828,2901.7466923676675,27640,472.7406,452.67319999999995,0.6456,0.3043387598276138,-0,23.25911855390401,2,23.25911855390401,2,23.25911855390401,2,23.25911855390401,2,0.7056305189907915,-1.4680780066445647,166.66666666666666,1.7917594692280552,4.25,575.875,0.0018057256238535047,8,0.6138492436378428,3131.5,1957.8107937599998,0.07008056367161991,9.098726994881027,2480.3974238093742,,,1.2624992954518828,219.45728513767776,3441,0.31146058838413615,-1.50603619629344,166.66666666666666,1.7917594692280552,4.55555534362793,12.88888931274414,0.08410494029521942,9,0.6138492436378428,0.7775061324036069,-0.5374526396116219,166.66666666666666,1.7917594692280552,6,225,0.004444444552063942,6,1425,0,42,10,22.715565119999997,2094.3669724770643,3679,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",2117.922999858856,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",3,1,"D - 3",1,1,,,,1,0,8,17,8.127587519999999,0.6082799742740636,0.639648920510485,1.7100838521997095,0.289898558538051,1.487303428451647,28.65691670676173,5.204993602301543,12.95788137934035,7955.51282051282,64659.12671519999,0.09976926128593706,186.22818414743935,6254.956580617005,5287.507786955774,412425.6073825503,2.9592888632104284,793.7156372533657,9046,1.0801384615384615,450.83158461538454,2.50582575302124,1.6028487379074094,103.45238267311255,56.96585627820205,1,56.96585627820205,1,107.9744602536929,2,56.96585627820205,1,-0.8493020552081302,-0.08859037371374434,13.477975016436554,4.321162817430107,18.087718963623047,64.47368621826172,0.016319941729307175,57,0.8355656769118729,8054.128205128205,65460.63188447999,0.14182348418598387,415.30123971028564,2721.6431302994074,7441.519704009637,580438.5369127517,2.9592888632104284,1142.2645241318867,9965,-0.5668648711633654,-0.5394208986565747,13.477975016436554,4.321162817430107,15.352941513061523,67.38235473632812,0.016346435993909836,68,0.8355656769118729,-0.36361567779245385,-0.5785665386206311,12.82051282051282,4.356708826689592,16.834861755371094,512.1926879882812,0.002004879992455244,109,0,0,254,247,3250.6182086399995,1529.0456148224132,39169,12,0.51231588,6.147790559999999,4.827773027678039,0.2514704998496169,1.8155790763085313,0.04619688205273173,0.3475088684796062,7408.306397306397,45544.71613494788,0.061129872523991935,1.2049995320484341,3.964397728271869,2.6935393120468865,0.990806875228273,5539.597225046889,34056.283526345454,45.01946901586579,3.374595617792738,2.3333333333333335,3132.7085437710434,19259.236012626963,0.053526398977956406,0.6342194817011723,1.1741763993580039,1.0680692092635307,0.9965041071906309,464.70351021399665,2856.8998532924716,0.05355134982353912,0.05355134982353912,71,1.8154253814084504,128.89520208,2.381117475342472,0.6679654641816288,1.5764060673832185,0.4626403395044424,0.6176163066463831,6795.7368820549145,875937.8786949773,0.3170838476222251,5.895109700356515,11.093115537323605,6.504789878092129,0.9366147028858626,6183.128380936347,796975.5821473736,55.152176971622055,4.1205875401450545,3.7183098591549295,0.08884245825171513,4378.55366222664,564374.5591108268,0.08105817659133455,1.225698860340009,1.6411339585776754,1.0553254868093178,0.9979787866581173,1710.5486286695932,220481.51116003408,0.08884245825171513,"CurrentSlice","Yes",57.81699991226196,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",3,2,"D - 3",1,1,,,,53,0,63,15,79.50447791999999,0.4831667246537825,0.2491961308818621,2.337820755634321,0.10438103124117704,5.438905190675461,2.4446635876697833,20.107097731895568,45.47285462074666,41579.89384010485,3305787.75172656,0.17114516909290814,5065.462147371504,6734.763788963286,39015.435506771515,29768777.291666664,1.5562327143624828,7116.197962129914,51058,26.25679737876802,450.9592152031455,10.555018437194823,2.630269755935669,-2.401184765786406,37.79137714040148,2,28.473305834992917,1,28.473305834992917,1,28.473305834992917,1,-0.8372690430243425,-0.0521176247698234,1.3552765605863588,6.6136383370582985,45.140384674072266,1597.2490234375,0.0007347467471845448,1040,-0.03644902093489918,3843.069462647444,305541.23123807996,0.27112131324442024,1694.7989539937676,2469.469653978951,3349.9861293141107,2556039.4166666665,1.5562327143624828,1041.9380396025035,10736,1.317719626955605,5.418624041045236,1.6060628442943543,6.488922524685737,113.9237289428711,23.23940658569336,0.057511601597070694,472,-0.03644902093489918,-0.1960557153225321,-1.5587864018425204,1.4239851314652618,6.577300345941133,72.26850128173828,214.26995849609375,0.005695614498108625,689,0,0,165,132,1205.8005484799999,1869.4684583477358,23894,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36,1.5629975999999999,56.26791359999999,2.5635974255310665,0.7628363604779063,1.3345254077977147,0.5639070427631349,0.5095811857403361,5540.601381983701,311758.0798534995,0.27303822188057825,2.6320213030992012,11.23664299202373,5.656626936195823,0.9320035661700143,5047.518048650368,284013.30945589946,12.404706349761613,3.306388721180073,3.9444444444444446,-0.01734475693406278,10853.550402317815,610706.636290864,0.08038416162858131,1.1240765998872162,4.2322974256361405,2.3511717152428107,1.0043236351005878,8289.09206898448,466409.91636006394,-0.01734475693406278,"CurrentSlice","Yes",72.23300004005432,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",3,3,"D - 3",1,1,,,,0,0,17,7,6.2519903999999995,0.45454471074376457,0.3445988641302377,2.4113179168494683,0.16624919068844835,1.5489822587750965,4.762906053478901,5.204993602301543,13.146973241406316,13103.666666666666,81923.9982048,0.06899972757072269,156.80302674721335,5120.557281258087,10439.346666666666,626360.7999999999,3.3561098601098807,904.1494301775599,14700,2.01212,452.22666,2.9289383182525635,1.009308817577362,-4.782334242173294,16.779333668069583,1,16.779333668069583,1,16.779333668069583,1,16.779333668069583,1,-0.04807963304558005,-0.5561482388264092,16.666666666666668,4.0943445622221,16.650793075561523,178.03175354003906,0.005759510211646557,63,0.36333605027837484,7401.85,46276.29514223999,0.17871911805453558,267.88203766185524,2205.485013460692,6793.41705882353,407605.0235294118,3.3561098601098807,1322.8521039719642,9399,-0.5599602676270937,-0.5841173839990574,17.22222222222222,4.071239656203436,13.677966117858887,61.93220520019531,0.018364442512392998,59,0.36333605027837484,-0.12787075597745992,-0.6490309353115213,16.666666666666668,4.0943445622221,16.838708877563477,369.45159912109375,0.0027387267909944057,62,0,0,27,55,104.72083919999999,2000.7850746268657,10007,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",86.6269998550415,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",3,4,"D - 3",1,1,,,,263,0,22,14,26.987758559999996,0.8298137522862512,0.6174398689713423,1.1439858841604629,0.5521292092073913,2.216684146961268,1.6689574075307594,7.050058416779254,20.21613020694456,10919.976833976834,294705.69827616,0.17448875848849088,614.5106874402027,6254.205619307758,,,2.4240847237269483,1905.4132004836993,16583,88.15431196911197,450.8905297297297,3.7726625072479245,2.3293922441482544,0.08846932694105811,23.374015793531832,3,23.451699542684484,2,26.86694218941739,3,26.86694218941739,3,0.5849595047762202,-0.0035010325513029628,4.1293361756682225,5.508655670772591,39.42068862915039,132.1448211669922,0.008642042055726051,290,0.5051361410889965,5287.783783783784,142705.43207423997,0.29228556129242056,868.044037285282,2181.3527109951815,,,2.4240847237269483,1545.5428512362028,10765,0.29286791534616535,0.7391832263779836,3.9802626675213553,5.53541811017645,36.52631759643555,37.105262756347656,0.04199167713522911,228,0.5051361410889965,0.22279006827544998,-0.7912681449244245,3.9206332642626083,5.546123085937993,16.287805557250977,880.9755859375,0.0014831008156761527,410,255,0,50,45,147.33857375999997,2257.291371994342,10765,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,0.7033489199999999,2.8133956799999997,2.7641403423805864,0.6187485480015555,1.0028228007558795,0.4736186050012747,0.326976511981171,3892.25202020202,10950.445019107634,0.18775391325356855,2.2557762437820745,,4.36456863866605,1.0043944307981967,3892.25202020202,10950.445019107634,7.201268228308936,3.9864053350709345,3,0.012729022877475099,4169.588888888889,11730.703367376,0.07341497476563784,0.8456010021820808,,1.0171635278399827,0.9857558183753679,4169.588888888889,11730.703367376,0.012729022877475099,"CurrentSlice","Yes",101.0329999923706,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",3,1,"D - 3",1,1,,,,666,0,69,60,281.96476703999997,0.7925413601652344,0.5789112781524575,1.2066739064421632,0.4442242325549838,7.358722871012361,0.20141311835113634,25.914628471193637,66.8638510347228,33274.58573540281,9382260.81523536,0.09539308605659484,8268.418585145037,6254.956580617005,,,0.9700864492776361,3174.1654205548234,47713,225.87721241685142,443.8127813747228,12.737372470092772,7.373808576965332,-38.41015050679957,34.35473526926734,3,33.140725882477,1,44.3302241125068,3,33.1811553669389,2,-0.11328218132062783,1.540070916406684,0.47415914594542036,7.721318861035025,380.3730773925781,1094.4833984375,0.0009538428275845945,3991,-0.10429926639781249,2640.2291204730227,744451.5888863999,0.2905687555964525,2172.198458806017,2721.6431302994074,,,0.9700864492776361,767.1680900253625,8117,1.093204035108845,3.204202615153452,0.8210382446497313,7.262069926101298,868.3902587890625,10.565500259399414,0.14232675731182098,2916,-0.10429926639781249,0.5444294944885265,1.688817243289237,0.415708652148001,7.818561077124994,214.14712524414062,460.41290283203125,0.0032967939041554928,4289,643,0,126,60,610.2984628799999,2989.285128905583,14732,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,1.6671974399999998,33.34394879999999,2.437901558522793,0.5177446326535445,1.5639481736905778,0.3705883133363267,0.5765630753708771,6156.713457925424,205289.13831733627,0.21589082613666039,1.9585272625828718,,5.893125069215014,0.9646060726601977,6156.713457925424,205289.13831733627,13.221015977122345,3.0576699130304825,3.4,-0.0188444361363562,12106.747664718958,403686.77426690847,0.09808421500287458,0.771191345763147,,2.9179862481004286,1.0011979990996105,12106.747664718958,403686.77426690847,-0.0188444361363562,"CurrentSlice","Yes",57.81699991226196,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",3,2,"D - 3",1,1,,,,430,0,74,31,186.51771359999998,0.6792074158781511,0.421745727842915,1.4606182494724562,0.3017878769330995,6.584737376624272,0.2296104657617513,23.742812268137065,58.74403365529544,60667.640223463684,11315589.543987839,0.1007229649193018,3835.757688269507,6734.763788963286,,,2.1531463649983644,6110.624597964756,65535,150.6244310614525,448.8552033519553,12.134468257141112,5.1176601470947265,0.3695652675205733,19.132705889327635,2,14.93654631199001,1,19.132705889327635,2,19.132705889327635,2,-1.6466787596393129,2.556750158861374,29.07275053837271,5.780025970890558,107.48173522949219,3249.389892578125,0.0003278502554167062,1752,0.1795670459157265,5317.129608938548,991738.8575740799,0.3345345804661476,1659.532035563738,2469.469653978951,,,2.1531463649983644,1778.7637230103885,13619,0.5747923884594635,0.40090750357877125,0.7390530882307044,7.28333285271989,273.2012023925781,35.413963317871094,0.04762687906622887,1819,0.1795670459157265,0.1487684934638144,-0.8910091773507234,0.6023532349177616,7.437686865086772,99.71710205078125,526.9337768554688,0.002892107702791691,2432,412,0,101,39,266.02219152,5442.0603211907555,29688,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2.36186304,7.085589119999999,1.3185533393754063,0.5990125475274333,1.5604862810903726,0.4989065573259131,0.7532422509632621,13503.195436507936,95678.09467015427,0.2757679720163299,1.913557364149356,,13.785965415097248,0.8781730298536035,13503.195436507936,95678.09467015427,13.020204676333666,2.4546927882593685,2,-0.2983218609164204,24341.859126984127,172476.4121907314,0.06548426629378816,0.7638824604978985,,5.2731031371603585,1.018617314641352,24341.859126984127,172476.4121907314,-0.2983218609164204,"CurrentSlice","Yes",72.23300004005432,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",3,3,"D - 3",1,1,,,,23,0,75,9,38.97074016,0.1903964694994836,0.1008580596559632,5.793573378518082,0.020052494022226197,5.994495838459516,1.0040258032038203,23.89592273171304,50.715979034548766,44473.254010695186,1733155.6261204798,0.24798948833542253,963.5300251039617,5120.557281258087,41718.14531504301,15602586.347826086,4.786941046315154,11028.899506723577,59721,18.78972192513369,451.9855957219251,11.928474906921386,1.2030828337669373,0.1907740753007398,22.125458135360088,3,16.779333668069583,1,22.125458135360088,3,18.94157864976148,2,-0.7822069366629308,-0.487933317947868,2.6880951700077214,5.920549127999774,18.573108673095703,1906.0538330078125,0.0007548652356490493,595,0.7160484908087331,10557.526737967915,411434.6312376,0.13918646215999617,1160.7161104397028,2205.485013460692,9961.20996778158,3725492.527950311,4.786941046315154,1469.4647958173189,13757,-0.19836162831496443,-0.7868033861713459,2.8453773342103004,5.879775764437424,50.65423583984375,116.8406753540039,0.009375890716910362,295,0.7160484908087331,-0.2500768784614794,-0.32637194756160826,2.7452886842632047,5.905722450340738,43.32160949707031,400.0351867675781,0.002709551015868783,398,14,0,95,65,353.86265663999995,4189.850117785631,13757,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,0.6772989599999999,1.3545979199999998,3.921430775020759,0.4228860569160715,0.897808655455392,0.3324911371127508,0.2953434953187343,7391.727272727273,10012.818388843634,0.16921649329098656,2.869419732762416,12.395638764976418,9.14743407195113,0.9568997932586341,6795.410502540937,9205.048932288108,7.531873013456286,2.749913364525634,1,0.6019896828196595,9813,13292.66938896,0.08146495815827418,1.0343962470267565,3.5617469523020473,3.0465931553533454,0.9935274661006662,7057.891304347826,9560.604880455652,0.6019896828196595,"CurrentSlice","Yes",86.6269998550415,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",3,4,"D - 3",1,1,,,,484,0,43,91,274.35817871999996,0.5297185829763044,0.5732862800878078,1.7094622841276856,0.2152305472916386,8.63970241276404,0.14331065183598088,30.727101233927026,80.67542896571227,63681.21762248386,17471462.88557664,0.08455577818361922,14464.139168486481,6254.205619307758,60455.324005462586,159178868.106383,1.9978860672878556,5384.614911749529,65535,162.76647504747436,438.48781754652487,14.990709649658202,8.593968170928955,77.51999265008178,32.226007008988184,3,25.104824664179496,1,32.226007008988184,3,35.025632598808706,2,-3.4494084172226778,12.487711292938329,577.7098900585328,1.8692356185842725,50.55707931518555,3027.718017578125,0.0003730270254891366,876,-0.11343885478852615,4358.094189137865,1195678.7844220798,0.3342301917382584,3827.9675408803496,2181.3527109951815,3695.158018925099,9729351.063829785,1.9978860672878556,1456.6066564489386,14537,0.3975473824171906,0.741448310957527,0.5704857090805603,7.562607002667843,622.0389404296875,24.978500366210938,0.06784721463918686,3442,-0.11343885478852615,0.8574625340900821,0.24533491778320338,0.4409544406218136,7.770368630656774,197.081787109375,199.98912048339844,0.01061012502759695,3399,462,0,86,102,602.17087536,3617.4826094480013,18547,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,2.27285901,36.36574416,1.4016227002567494,0.5574188222002843,1.670812241136369,0.3472634451796814,0.7539147883978911,5843.772831731682,212513.14772791305,0.2393020679019971,2.1574523605412645,8.814985656697768,6.552902407265236,0.9728652899563487,5180.836661518916,188404.9805675454,10.617793115720115,5.153513383887499,2.625,0.10798775354507933,19779.55347352595,719298.181217284,0.25111871336607194,0.8016304012592647,6.131495895946495,4.8251856301335625,1.0403623936400135,16553.659856504673,601986.1592533111,0.10798775354507933,"CurrentSlice","Yes",101.0329999923706,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",3,1,"D - 3",1,1,,,,777,0,54,46,151.089768,0.7146116114781145,0.46949824745764174,1.3454496054873153,0.3422888627101307,5.688022544271794,1.6219418138641186,20.922321282305173,51.54510455191018,42449.47724137931,6413681.668121279,0.20775703996920525,7672.317473943155,6254.956580617005,38872.20224137931,56364693.25,1.565922446451188,8819.17773990911,65535,259.01672358620687,446.14655503448273,10.297707147216796,4.834755458450317,-41.55528129251858,22.850635377499163,2,12.479685903597527,1,36.25057211817597,3,36.25057211817597,3,-0.08037547120221737,-0.6665259200115665,0.7248513674197384,7.243944427579147,74.68402862548828,1828.6602783203125,0.000666910142172128,2361,-0.1469522074400949,4261.882068965518,643926.77304336,0.5141691414585976,1814.7917890285448,2721.6431302994074,3523.6633189655176,5109311.812500001,1.565922446451188,2191.328244397792,22370,1.6662521485523196,4.867943431002329,0.8637336504161712,7.1185546941697435,252.0867462158203,30.245603561401367,0.07690711319446564,1706,-0.1469522074400949,5.351792655727125,43.72295494731589,0.9483947681331748,7.039037393358268,189.49954223632812,51.329322814941406,0.0363536961376667,1081,715,0,182,102,708.558912,3587.8748529411764,27320,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31,2.2722287690322576,70.43909183999999,1.9514901281863701,0.6766416595331668,1.7856584115448517,0.4232622374746572,0.7505505015866486,7775.602824749192,547706.4014838717,0.2526737176387857,2.2274076115666457,10.532925131946584,7.442704658571035,0.9611741097831408,7037.384074749192,495706.94315461174,21.099751689222547,3.311718749932098,4.258064516129032,0.04034073576357487,8894.97927586178,626554.2621273246,0.07755829511397054,0.8170224046386745,2.4865237578496986,2.1438810754882867,0.9960291562762041,5317.704275861781,374574.2598653886,0.04034073576357487,"CurrentSlice","Yes",57.81699991226196,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",3,2,"D - 3",1,1,,,,625,0,37,42,131.29179839999998,0.8519687212891045,0.9370917652488877,1.041444130079297,0.7771181853784036,4.664948498013223,0.6470392009063339,15.236707108821117,44.00600110355929,59154.46666666667,7766496.312059519,0.13803645425792194,6971.342646305501,6734.763788963286,,,3.155372255411586,8165.472832185102,65535,207.4392219047619,446.86664285714284,6.808497294616699,6.380186748504638,116.73391475842216,44.473891441922156,6,36.62899022943763,1,41.78059769195499,4,37.59852790350758,2,-1.4996067004604292,1.6853284229496515,96.9652305366591,5.164988029571158,60.525726318359375,2989.279541015625,0.0003763099084608257,1341,0.5303971717388074,7792.096031746032,1023038.3013134398,0.4374348405636763,3274.6195477084552,2469.469653978951,,,3.155372255411586,3408.5342853036805,16284,0.3091857490017366,-0.5907787250573162,0.8641975308641976,7.077938874544446,139.7473907470703,76.01536560058594,0.030110452324151993,1627,0.5303971717388074,-0.2634378052867398,0.18997434330743657,0.8755353993449231,7.070091643911103,122.4020767211914,248.3349609375,0.005762189626693726,1639,584,0,114,62,471.29587631999993,4333.682069422949,22145,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2.5007961599999997,7.502388479999999,2.4789372535741885,0.3005878915517446,1.5134698258475465,0.21725929365264018,0.7496701118667626,13522.71712158809,101452.67715130124,0.16919439521717353,2.1605286873728553,,13.805895903152823,0.9521008223085096,13522.71712158809,101452.67715130124,7.2507372411468465,4.207590165593114,2,0.6162067188657979,28613.002343534597,214665.85916034694,0.1691898452697388,0.9966724167889253,,6.198347941879754,0.9544409725246155,28613.002343534597,214665.85916034694,0.6162067188657979,"CurrentSlice","Yes",72.23300004005432,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",3,3,"D - 3",1,1,,,,386,0,19,7,8.127587519999999,0.5456129576780973,0.3730943967778302,1.6464112371915134,0.2340920237927545,1.4593520479188147,5.5038586520670005,5.8104,13.681805793142457,11707.26923076923,95151.85529328,0.08915505306243943,200.71174139734416,5120.557281258087,,,1.8347089425802603,1043.762209485495,12996,127.80396923076921,452.1145076923077,2.7353480861663817,1.0205430441856385,2.3651300228795673,29.41045344800552,2,16.68590258902685,1,29.41045344800552,2,29.41045344800552,2,-0.8135772737445961,-0.5145947795689798,13.477975016436554,4.321162817430107,18.75,137.59722900390625,0.007528227288275957,72,0.5792260936897382,4046.423076923077,32887.65770064,0.14640862373924926,210.25793399832693,2205.485013460692,,,1.8347089425802603,592.4312337590461,5484,0.17496883527605722,-0.5289008861124977,12.82051282051282,4.356708826689592,21.140350341796875,19.789474487304688,0.05710526183247566,57,0.5792260936897382,0.4086030613732991,-0.8221656352793598,12.82051282051282,4.356708826689592,10.283333778381348,267.48333740234375,0.004463613964617252,120,329,0,76,18,94.50925487999999,1720.0044101433296,5687,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",86.6269998550415,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",3,4,"D - 3",1,1,,,,743,0,6,4,1.8755971199999997,1.1150679494430011,0.5949245659617772,1.1786359539680196,0.4621467818163195,0.593157029978266,9.763373663604488,1.7383311997430178,4.597524413802105,12265.777777777777,23005.657474559997,0.14654786746006238,47.35590307495457,6254.205619307758,9077.977777777778,163403.6,2.032327096794763,1797.523576072356,14559,240.6115333333333,452.51179999999994,1.0182495140075682,0.6057816501617431,6.813162972481052,23.737414735226817,2,23.737414735226817,2,23.737414735226817,2,23.737414735226817,2,-0.2728269564868659,-1.1787684341947446,55.55555555555555,2.8903717578961645,5.0625,157.21875,0.0069644819013774395,32,0.9146878438635447,4433.222222222223,8314.938832319998,0.14791220303983874,41.72339131751655,2181.3527109951815,3709.4222222222224,66769.6,2.032327096794763,655.7276654540585,5552,0.15741883304666146,-0.9286264018310573,55.55555555555555,2.8903717578961645,7.666666507720947,23.238094329833984,0.04731481522321701,21,0.9146878438635447,0.024122524354013214,-1.017165329401589,55.55555555555555,2.8903717578961645,5.666666507720947,107.73332977294922,0.01016237773001194,30,725,0,35,45,119.51721647999999,1952.1054925893636,11755,1,0.20839967999999998,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,7564,1576.3351795199999,0.05926833676259533,1.3038037319659115,2.0053022269353127,2.9758745179783372,1,3792,790.25158656,4.8064344433038775,,,3815.5,795.1489790399999,0.005374419251581674,0.6903604233621787,1.196906957776523,1.2727408946069252,1,627.6999999999998,130.81247913599995,-1,-1,2,0.9898984799999999,1.9797969599999998,1.4090030186296025,0.7104897529860017,1.2811008382837246,0.3876743313130293,0.42275907738786733,7108.858333333334,14074.096117404,0.1754992177749965,3.8817192510237235,9.821578244450587,7.971503380908019,0.9650866033961938,6385.058333333333,12641.119077755999,5.850086746576738,4.8461886105268315,1,0.34026797700103517,5468.991666666667,10827.493075932,0.1006999740848625,1.1556901088961529,1.7156006232093188,1.3341504415982175,1.006440774507844,2281.1916666666666,4516.296326843999,0.34026797700103517,"CurrentSlice","Yes",101.0329999923706,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",4,1,"D - 4",1,1,,,,81,0,40,67,225.28005407999999,0.7688285963916401,0.632761573699108,1.2309571354186266,0.4306933614388859,6.6434382372707,0.5183846115448777,22.845940526929503,60.68083365529544,25828.31452358927,5818604.0926694395,0.12638475817205322,11310.638213407507,5535.213609673562,,,1.7051756261721556,3264.3052850555596,34789,32.45633061979648,442.541629787234,11.227896061706542,7.1045811813354485,100.30690262058815,39.465254697919576,4,37.83232125689806,2,37.95975393612799,3,37.83232125689806,2,-0.45684307915965916,0.6040000434610464,0.5588069428981457,7.541787171525053,271.5035705566406,659.8103637695312,0.0016390294767916203,3074,0.021237458636882166,3905.4745605920443,879825.5202182399,0.2941444031740775,2721.788325396514,2290.3649927011948,,,1.7051756261721556,1148.7734837368894,15473,2.4186430239342642,17.58873246437092,0.783442199423051,7.264119632750011,688.45068359375,20.559043884277344,0.06963837891817093,2676,0.021237458636882166,2.14829483994582,9.475389634014897,0.6520840589408683,7.42020212983453,338.64727783203125,60.27614974975586,0.023417623713612556,2285,0,0,256,96,1481.5133251199998,3224.3790265860175,24719,3,0.868332,2.604996,5.425337247593746,0.6860234322873153,2.437580956459763,0.19101577819705814,0.5019173779690557,10532.206349206348,27436.355410857137,0.04097940907735843,1.4401005743334452,,3.3656649108202576,0.995851594616996,10532.206349206348,27436.355410857137,18.71952546639752,16.329216390154794,2,11778.412698412698,30682.71796571428,0.03901890766247709,1.2212684330248964,,4.1479252932417054,1.0020608665437118,11778.412698412698,30682.71796571428,0.3308622930943918,0.3308622930943918,59,2.2447118074576267,132.43799664,2.2344500713732267,0.6866499079366063,1.4262255913477289,0.4607548252973335,0.6474164921913471,6098.477762320217,807670.1773952796,0.27892530792747333,1.8631551803381032,,6.504266156506258,0.9351930598035808,6098.477762320217,807670.1773952796,15.388778022386203,3.3121788290839884,4.813559322033898,0.0755873638757688,5816.055325606657,770266.7156707485,0.0870780769448,0.7593935909437206,,1.405013829776993,1.0038480330322488,5816.055325606657,770266.7156707485,0.0755873638757688,"CurrentSlice","Yes",587.4269998073578,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",4,2,"D - 4",1,1,,,,391,0,83,23,147.33857375999997,0.49609552683326974,0.31935454964874216,2.185397920839409,0.12627418312369132,7.158689786301257,9.686700333727236,26.80017718448891,61.091460413889116,28096.450495049507,4139690.9436590397,0.13194957367641344,7427.69604121535,5605.460776225145,24807.593352192365,35077937.00000001,1.1885269366483298,3707.3146646422374,36991,137.685614427157,449.9804605374823,13.638701431274413,4.355581353378295,-5.285981747816913,37.384280701362805,2,22.041465501858273,1,45.924716121072464,2,22.041465501858273,1,-0.685347741525387,0.13050606537769793,0.7942398604378522,7.169492865409789,114.76470947265625,766.6240234375,0.001442664535716176,1564,-0.6005079372335225,2644.845120226308,389687.7078302399,0.38641885644902585,1482.8415989347934,2225.3135698252036,2021.2736916548797,2858081,1.1885269366483298,1022.0180268426363,11450,2.306486722855683,9.325618484823428,1.2043637178427884,6.851362366482462,261.6081237792969,13.24929141998291,0.1404406875371933,1059,-0.6005079372335225,0.13409384347307626,-0.8273062622298091,0.855258288002977,7.114700689865731,181.1138153076172,110.24227905273438,0.01037791557610035,1230,0,0,589,145,4090.2605193599993,2526.4800275131197,30948,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,230,1.7496512264347825,402.41978207999995,2.8890136747341892,0.6609568140354055,1.684468099282619,0.3715423067244201,0.6008977023087805,4097.344388706132,1648852.4360098324,0.23977303764330496,1.9641706814253592,6.570769924614645,4.518299506869812,0.9667428309290345,3473.7729601347037,1397914.957612804,69.31813156124022,3.123410398438993,4.756521739130434,0.06681098220821703,5282.421871896266,2125751.058543121,0.06723376545311617,0.8821263731219897,1.6061572888225986,1.2754756134628833,0.997769981130844,1993.564729039123,802249.883822298,0.06681098220821703,"CurrentSlice","Yes",602.3699998855591,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",4,3,"D - 4",1,1,,,,651,0,49,8,28.029756959999997,0.3261934279685846,0.16816671212650794,3.2753736000414655,0.05500618678076463,3.8225234806354296,2.494338103933836,15.494399999999999,32.86071393107649,29465.126394052044,825900.3316209599,0.24874610081242193,1820.0013982449511,5205.585866511695,26606.18059965952,7157062.581308411,0.6903911021051813,7329.335300465624,42379,218.14679999999996,452.034,7.53929800415039,1.2678589570999144,-0,49.15592050714459,2,40.69083466911977,1,59.874825370310184,4,49.15592050714459,2,-0.2900179595929739,-0.8681475519662736,3.772750514780061,5.584404358329572,17.645597457885742,871.146728515625,0.0015507828211411834,443,-0.019909206826423925,1716.9628252788104,48126.050701919994,0.06708990936488175,329.14152875683396,2486.942285384829,1131.8955355591843,304479.89906542056,0.6903911021051813,115.1908803308267,2324,1.2413431423489285,4.24546649414671,6.6472270974696315,5.14726106406415,52.31034469604492,4.258620738983154,0.24281609058380127,58,-0.019909206826423925,0.2091830737691326,-0.590301320108392,3.7451113168695844,5.589557868965706,22.849056243896484,316.4496765136719,0.00398294348269701,318,394,0,521,64,1452.85836912,1409.2879581151833,37897,1,0.41679935999999995,0.41679935999999995,1.3962634015954636,0,1.9634954661505089,0,0.360901371568466,6706.5,2795.2649078399995,0.14997168413395745,1.1489737915057323,2.7915674889791524,2.4600927254353158,0.9179900096920898,4304.086292834891,1793.9404122383548,30.167754778239612,,,3049.75,1271.1338481599998,0.09234263111715099,1.0250309139751235,1.0667393575568014,1.02248115428574,1.038494958603164,190.80420560747643,79.52707078250458,-0.5055611803367279,-0.5055611803367279,8,0.39074939999999997,3.1259951999999998,6.312000437457723,0.57380458848685,1.4280792688129342,0.3052548609877647,0.2413975062077953,6972.854166666666,21797.108655299995,0.1695475525662192,5.337000778940732,11.918037957664959,8.213536153598636,0.9512126607269744,6387.78687694704,19968.191115959435,28.919545264895763,18.734561510195867,2.25,0.17102883888760828,5827.416666666666,18216.476528399995,0.03552772174400484,1.2995569958995439,2.038309602825083,1.5944214724048476,1.0004957514087982,2968.4708722741425,9279.425698068782,0.17102883888760828,"CurrentSlice","Yes",617.3329999446869,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",4,4,"D - 4",1,1,,,,24,0,10,7,5.105792159999999,1.0564636855271883,0.788827501150629,1.0875636672289184,0.6097963330027292,0.9400890415172515,2.4465355119223253,2.9760689508141436,7.79308137934035,2493.081632653061,12729.156654239998,0.03281336053267031,48.79100912606326,5488.245931858487,25.82099435518876,1265.2287234042492,0.23004190897589125,81.80638644962322,2719,9.20309387755102,451.9792897959183,1.4761843952178955,1.1644548477172851,-13.340557577499688,21.77865675574938,1,21.77865675574938,1,30.86048006228718,2,30.86048006228718,2,0.5578591137604563,-0.2535456135047216,24.573094543940027,3.7679748779423794,17,9,0.1111111119389534,17,0.1364421002768557,539.8571428571429,2756.3983675199997,0.04119639178724254,47.099890465869635,2346.777355745734,29.335866261398223,1437.457446808513,0.23004190897589125,22.240166366284225,594,0.5446703232893682,-0.597138736404133,35.40191586838817,3.456765939731792,17,1,1,17,0.1364421002768557,-0.4209394034143786,-0.26741990094595636,26.239067055393587,3.7113914346313632,17,9,0.1111111119389534,17,0,0,58,24,84.71446991999998,560.3234932349324,1014,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",632.3229999542236,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",5,1,"D - 5",1,1,,,,706,0,47,21,71.68948991999999,0.6535977237171867,0.5653644121738377,1.4195191710481092,0.36137217708988567,4.024467730425487,4.428789065548695,14.852308281206662,37.125936000087016,26145.658430232557,1874368.9164859198,0.16887698351733152,4237.853437418098,4604.7215239126235,,,2.1336963386891727,4415.399927772163,33502,236.21875290697673,450.28723255813946,7.0060772117614745,3.9609867244720456,9.040006995963392,28.710238469100315,1,28.710238469100315,1,54.06704627758135,2,54.06704627758135,2,-1.2471610804260247,0.8583093698620043,1.5929218496484585,6.469803922988219,59.721893310546875,631.06982421875,0.0019254644867032766,845,0.31913704305533114,4635.71511627907,332332.05210047995,0.15377171106310486,1339.096524375771,2172.6217701282653,,,2.1336963386891727,712.8418454313327,7365,-0.5790505737045498,1.5247305786141325,1.9562939426717145,6.3130913297316535,149.3252410888672,25.429906845092773,0.04759133979678154,535,0.31913704305533114,0.5270898233575089,-0.01859200274829842,1.6140481341265547,6.457220254034279,93.09893798828125,100.87455749511719,0.011214238591492176,566,652,0,223,118,1739.4079291199998,2474.6317618163303,41289,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,2.2586847670588233,153.59056415999999,1.9615611914941107,0.7458223450048231,1.4733698077670305,0.5492433282261361,0.6783819863594526,7093.040432891232,1089424.081697455,0.3800285767498808,4.183153927767555,,9.969081574133797,0.9115044444502634,7093.040432891232,1089424.081697455,22.234893946925272,3.7847401300471546,4.088235294117647,0.10428053438079808,4779.710071704386,734118.3664343106,0.07108285769265021,0.9863777942969162,,1.5639694538908222,0.9963278369065847,4779.710071704386,734118.3664343106,0.10428053438079808,"CurrentSlice","Yes",767.7530000209808,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",5,2,"D - 5",1,1,,,,434,0,36,28,69.70969296,0.7042950869117598,0.6427239473810431,1.1838102597603606,0.5597788021810511,3.624079357988955,11.240108854030506,13.622771929383532,35.26746041388912,38833.27802690583,2707055.88788592,0.14944048511459138,5082.84426280391,5367.859248552806,35327.62100211244,23634178.450413223,3.9503326965173033,5803.263906930609,48225,146.86869237668162,449.0866941704035,6.097368564605713,3.9189247924804684,40.160534219185216,38.074315280551374,4,26.711287223827487,1,32.89715472276438,3,31.260049895743894,2,-1.1343763992837814,0.5985088849740188,1.548392286191156,6.483497901834165,57.674110412597656,1441.9451904296875,0.0007896426832303405,985,0.31720030152461665,8571.044843049327,597484.90435536,0.3010888871028969,2811.8141004867675,2169.702022972835,7855.102694288997,5255063.702479339,3.9503326965173033,2580.6463531027453,16997,0.6155930491002229,0.5005231839525632,1.6377655783234017,6.444908447846852,74.67662811279297,95.40217590332031,0.01890532672405243,736,0.31720030152461665,0.011693505612718718,0.2841249548352076,1.5662669446176052,6.473919092175219,61.31399154663086,530.4891967773438,0.0022778308484703302,879,377,0,310,278,1957.3939943999999,2271.8829385147724,33729,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,80,2.5528960799999996,204.23168639999997,2.5675514876359133,0.6209247830586397,2.2600058408072297,0.35242768346106984,0.8726664351952462,5316.7183396498895,1085842.3526205048,0.3150417474167077,3.3581422731947677,7.426184292761507,6.687927559668785,0.9528852793560576,4600.776190889559,939624.2802143429,49.03006360056498,3.4729429784174184,3.5,0.08239353859267529,5748.294024673029,1173983.7825820157,0.0747775133112338,0.9621686343385042,1.6397194545897753,1.530938527869255,0.9956553903025129,2242.6369998796404,458017.53646845557,0.08239353859267529,"CurrentSlice","Yes",782.6899998188019,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",5,3,"D - 5",1,1,,,,789,1,1,1,0.10419983999999999,12.566370614359172,1,3.1415925460576575,,0.2282540689670175,11.486526181382136,0.3228,0.3228,10505,1094.6193191999998,0,1.931167094483469,4988.120677419704,7878.589147286822,7878.589147286822,3.1067699663446477,0,10505,254.68919999999997,452.56559999999996,0.3228,0.3228,90,50.43993684893015,4,42.38559077872581,1,48.71206898971508,3,42.38559077872581,1,,,1000,-0,2,121,0.00826446246355772,2,,7207,750.9682468799999,0,2.4473715174047985,2319.7726507185166,6680.259689922481,6680.259689922481,3.1067699663446477,0,7207,,,1000,-0,2,64,0.015625,2,,,,1000,-0,2,2025,0.0004938271595165133,2,744,0,92,23,155.88296064,2947.6410427807486,11141,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,1.3198646399999998,3.9595939199999997,1.8114435841205305,0.5931198005951056,1.1361602241750202,0.47693500176179887,0.4699982576698611,7610.063492063491,30132.761133988563,0.14991714988620364,3.087830220034123,14.447467464458024,9.696682881396029,0.9837959945129691,7083.323181985972,28047.083404786707,8.68662260029507,2.3539590267798705,2,0.13893005681389559,7549.6984126984125,29893.739932754284,0.04490265700479065,1.21690965330735,2.8745306184290618,2.161521456395578,0.99720739159791,4923.287559985234,19494.219488929164,0.13893005681389559,"CurrentSlice","Yes",797.5829999446869,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",5,4,"D - 5",1,1,,,,100,0,43,24,77.62888079999999,0.7484572532705822,0.7101880780411319,1.2257036054753259,0.4871466285732752,3.8914769279212744,5.110792801727396,14.192191188114679,36.10215227595509,28041.3033557047,2176814.99567664,0.13292899949470852,3708.3863234725077,5253.622848410078,25521.70623340254,19013671.143884894,0.9071795404828823,3727.502399601438,34499,38.21778684563758,449.7812875167785,6.3455448303222655,4.50653028717041,-12.507098210279418,31.86555982259073,3,22.738552578947125,1,34.80070463237911,2,34.80070463237911,2,-0.9974450841895601,0.8970389708755944,1.4359713526417728,6.5650034755753754,76.39103698730469,763.1567993164062,0.0014566502068191767,982,-0.05286946097250929,2123.2724832214767,164827.26650592,0.34942041413996977,884.2125023717817,2340.5206890923496,1625.521883701093,1211013.8033573143,0.9071795404828823,741.9147504192504,6955,2.32803198310772,8.053862471753899,1.9224359263096258,6.33977418452971,176.55471801757812,8.779245376586914,0.18795698881149292,530,-0.05286946097250929,1.5285257944853288,4.63720695216172,1.7062294491239132,6.438186604846404,127.81012725830078,91.84990692138672,0.011908741667866707,553,39,0,136,151,1020.9500323199999,1814.3977342314759,13253,1,0.31259951999999996,0.31259951999999996,3.2340725067158833,0.5760827726115565,0.9308423232128326,0.5000000000013642,0.21520000000041592,12275.666666666666,3837.3675076799996,0.0906926893342882,2.6310552551674866,5.9154438530358675,4.828163901766721,0.9756360822266037,10200.47721822542,3188.664282188201,26.628244697677736,,,2584.3333333333335,807.86135952,0.08945619646600916,1.0211453955482117,1.0256930802381714,0.8955378984322344,1.0187991745168417,64.73621103117512,20.236508494964045,0.6907868451900928,0.6907868451900928,57,1.5520291957894736,88.46566415999999,2.1246035840475646,0.6272844221944628,1.5643146997576731,0.36165735155229634,0.5842028781523448,4083.4809928189334,361247.8581144631,0.2460292826073368,1.8890624532304472,8.203869561892327,4.484903341000679,0.9763357496873192,3585.7303932985496,317214.02074185415,23.574988598811988,2.859774126617239,4.842105263157895,0.0387281860101441,7941.6085359766885,702559.6736339029,0.06206678596042024,0.9391752733020475,3.151935865334071,2.0375717088504524,1.00045904732103,5422.011413674531,479661.8407938178,0.0387281860101441,"CurrentSlice","Yes",812.5199999809265,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",6,1,"D - 6",1,1,,,,21,0,89,24,130.66659936,0.32107508472899365,0.3386583600384278,2.1607732952322194,0.18829979038943911,6.703428316872489,1.3157439444252124,28.40823403170285,71.51282317256982,31224.5653907496,4080007.7761031995,0.21790980030823817,6422.459264347849,5149.514260708965,,,1.9433096093988294,6804.138809009771,42672,22.69021435406698,450.04729665071767,12.69843733062744,4.300431961441039,2.9779553721050886,33.64186048035123,1,33.64186048035123,1,33.64186048035123,1,33.64186048035123,1,-0.7504428300763554,-0.46183038566693657,0.8559531349760511,7.083240817993891,80.81033325195312,933.9869384765625,0.0014003453543409705,1761,-0.007760758990431625,4971.621212121212,649624.83709392,0.17212774609858691,1946.4123515884676,2558.326881149527,,,1.9433096093988294,855.7539536983489,9507,0.9768014899544889,4.373732202024018,1.2756626959598505,6.772307966892669,303.6104431152344,29.746105194091797,0.040211621671915054,1091,-0.007760758990431625,0.8866033190915971,0.3845671775442354,0.8788463837569855,7.065406559741825,114.04949188232422,629.0951538085938,0.0017855529440566897,1576,0,0,123,72,493.38624239999996,3671.4156282998943,13257,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,2.372078710588235,40.325338079999995,1.9444310385172736,0.7278556636285779,1.5832932093297676,0.49684528127601835,0.7071566377641858,5778.931545483336,233037.3683127924,0.23591770192423067,2.489805242634458,,6.128090358398274,0.9511187745280679,5778.931545483336,233037.3683127924,10.71133779643233,3.545301005747818,3.5294117647058822,0.0095657951716189,6496.40615378779,261969.7744564851,0.11034605826674018,0.920004463150483,,1.7275649938504136,1.0083208210819619,6496.40615378779,261969.7744564851,0.0095657951716189,"CurrentSlice","Yes",1301.9329998493195,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",6,2,"D - 6",1,1,,,,0,0,4,5,1.5629975999999999,1.3871977968913511,0.9311562926339815,0.9904161863346517,0.8721804511278191,0.496361494074631,52.38836915155952,1.3309384959493806,3.76283255173614,9612.666666666666,15024.574929599998,0.09990516438097824,40.118845564222255,5478.450604301297,7073.196702002355,106097.95053003532,1.7153157104468475,960.3550434728835,11091,0.4734399999999999,452.28584,0.7265238810539245,0.6765072835922241,104.03624938562889,49.33093782642739,2,34.24086513286991,1,34.24086513286991,1,34.24086513286991,1,-0.07640920136373185,-1.1779414504174104,66.66666666666667,2.70805020110221,5.952381134033203,96.23809814453125,0.010821739211678505,21,0.08375066744465946,4560.8,7128.519454079999,0.027224210013244435,32.49570061524912,2658.8691354152475,3991.686925795053,59875.303886925794,1.7153157104468475,124.16417702840523,4741,-1.1097034699175632,0.635354445066084,75.55555555555556,2.615630577027551,9,25,0.03999999910593033,9,0.08375066744465946,-0.20632642881931543,-0.3953511024160732,66.66666666666667,2.70805020110221,5.941176414489746,328.8235168457031,0.003062721574679017,17,0,0,85,226,964.6821187199998,2109.241628861525,30742,1,408.67177247999996,408.67177247999996,0.1790905162273294,0.279026600627814,3.285267243984672,0.10022437575248733,14.617824515432524,16454.938296787353,6724668.79979712,0.3507479860207801,2.6226778870789422,7.849619529858357,5.37076977074513,1.0551703088791322,14358.6662119817,5867981.571299247,20.081157605449686,,,4449.5759816420195,1818416.10320208,0.1879091316037909,1.3846130023945535,1.7521672016428842,1.4143995621699152,1.0354366148974314,1910.1060169777088,780606.4115829932,0.5090867030297441,0.5090867030297441,9,2.67446256,24.070163039999997,1.4046030181430909,0.5561888436570712,2.051232710026521,0.24838881279502648,0.9167076342529095,7511.370682016768,180799.91697001958,0.2325390546313202,3.863523568410623,13.198380115428169,6.334571403535302,0.9506600915772013,6942.257607811821,167101.27248571088,24.26503001161638,5.629555308083946,2.4444444444444446,0.032216394782022616,4568.13031626902,109955.64150056208,0.11124731153621517,1.2393067211657351,1.7988518784757022,1.009279817166389,0.9918693947988966,2028.6603516047094,48830.18541590907,0.032216394782022616,"CurrentSlice","Yes",1316.789999961853,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",6,3,"D - 6",1,1,,,,661,0,43,51,138.37738751999998,0.718824830925098,0.6346792667194661,1.3190281083934825,0.3616026324244803,5.389762799317983,1.0868973584461556,19.437814173409517,49.184239448437886,38512.9186746988,5329317.071975039,0.172349461317078,4985.1815974305455,5690.069400870439,,,2.1261381072594228,6637.680787332772,61335,219.98674156626507,445.4440680722891,9.100999266815185,5.77621554107666,122.95469912663604,12.36074941067982,1,12.36074941067982,1,19.254535027255823,2,19.254535027255823,2,-0.5668838380425999,0.7694368874651807,0.8029104369284367,7.145497890360719,101.31050872802734,1482.4339599609375,0.0007909036939963698,2074,-0.3501920181010841,5194.45858433735,718795.6084814399,0.4018151193058479,1390.9420076482656,2443.142600474327,,,2.1261381072594228,2087.211995794798,14476,1.4026556850560508,2.1499173203578703,0.9344607345042821,7.033642431944484,247.56491088867188,39.216346740722656,0.04529429227113724,1664,-0.3501920181010841,1.0025286829597932,-0.40467908049522316,0.8006423283495427,7.14888545147288,84.20771789550781,534.9903564453125,0.005306382197886705,1969,632,0,73,86,310.09872384,5064.293010752688,25822,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,2.9045705399999995,23.236564319999996,3.8417428686314934,0.763437631868211,2.273033391044816,0.27870646246112374,0.870053882229723,10230.452529761904,237720.5682305192,0.17324727696074488,2.027278887713936,,9.841018372509671,0.9506798940471097,10230.452529761904,237720.5682305192,12.600996187825444,3.1568548531959344,2,0.1348021397824409,11571.106845238097,268872.7684629673,0.06340092271982464,0.8544241930821632,,2.5873217955727417,0.989821098520246,11571.106845238097,268872.7684629673,0.1348021397824409,"CurrentSlice","Yes",1331.6669998168945,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",6,4,"D - 6",1,1,,,,263,0,63,24,114.20302463999998,0.6260174269666272,0.4399070826117317,1.5318064473026147,0.2884587867435664,5.276558929745211,0.5916439721790048,20.07857517255644,47.879601103559295,32187.405109489053,3675899.0188166397,0.12849057043532064,4172.773901470923,5516.1592041472795,,,1.4782838154880833,4135.778043351002,40388,93.77516715328466,449.84948540145984,9.659985543823241,4.249496058654785,-4.565315625125192,34.431396386577106,2,21.63998392838279,1,61.52239194315523,2,61.52239194315523,2,-0.8188794304777852,0.5627434888395939,0.9939927540092706,6.937443978735265,95.9446029663086,989.7599487304688,0.0011073153000324965,1408,-0.07332120394090774,3893.4726277372265,444646.35044063994,0.20681138265759189,838.8180543666947,2633.778836611103,,,1.4782838154880833,805.2144574818234,8111,0.19579391042143593,2.5783663594046056,1.3669481591986787,6.694825342365102,252.2046661376953,19.50265121459961,0.06991324573755264,943,-0.07332120394090774,-0.09949325070941732,0.29395716650106163,0.9773429591347433,6.951667551769854,97.68222045898438,781.7899780273438,0.0014459042577072978,1457,232,0,125,40,266.43899087999995,4575.543214704732,20848,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13,2.116058289230769,27.508757759999998,1.5366825330154725,0.6712615072381344,1.3198782994938358,0.4650442508880254,0.6433451852237365,8004.991977506916,220207.38517998107,0.23724870969864562,1.3504556318471628,,7.816730512682081,0.9593175082905204,8004.991977506916,220207.38517998107,12.558492522025402,3.9452162859194373,4.923076923076923,0.1651043137176561,8034.713725371678,221024.99354219664,0.06307154110543879,0.537165368973944,,1.9724117155668774,1.0036321469175256,8034.713725371678,221024.99354219664,0.1651043137176561,"CurrentSlice","Yes",1346.5999999046326,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",7,1,"D - 7",1,1,,,,264,0,38,26,65.64589919999999,0.7475168865981217,0.7914880133362862,1.2309688271993213,0.45112424924749084,3.586223795787232,6.284852280635577,13.139982301357943,33.21989296562526,40097.741269841266,2632252.281547679,0.10090199020527679,1766.9661243728888,5614.414453148302,,,2.4137633941077654,4045.9418968632463,48696,90.42703999999999,449.43905142857136,5.6242103874206535,4.451495106124877,-28.683957060047685,68.30342237687847,4,57.975363279113964,1,68.30342237687847,4,70.51701982749451,3,-0.8066303434671349,0.4986586421338477,1.6477702191987906,6.420684127137827,68.24152374267578,1548.5869140625,0.0006790384068153799,944,0.2889182112677042,5607.619047619048,368117.194752,0.16371400080160275,647.0162333360242,2323.185056707629,,,2.4137633941077654,918.0457492569876,9194,-0.05103987617383612,1.4529408534360062,1.9803476946334089,6.289734816788601,160.4938201904297,36.41666793823242,0.032459940761327744,648,0.2889182112677042,0.16334985528669743,-0.7162231384939974,1.6578483245149913,6.414913278027359,66.45821380615234,214.2377471923828,0.005534597672522068,694,184,0,136,167,1404.1970438399999,5467.035767289997,27815,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,49,1.7012218775510202,83.359872,3.680619749585069,0.6797298933025109,1.9397004070126838,0.29165394233307385,0.6025156302253866,8534.821763532205,711461.6497508588,0.13349687741670416,1.6596785490291426,,8.6583556999688,0.9741127251631039,8534.821763532205,711461.6497508588,23.49794296039364,3.4999150831086525,3.3877551020408165,0.09751731785447071,16946.077033194248,1412622.812389212,0.06258542005015634,0.996067934521041,,3.7034305566187387,1.0038672966876536,16946.077033194248,1412622.812389212,0.09751731785447071,"CurrentSlice","Yes",1481.1299998760223,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",7,2,"D - 7",1,1,,,,388,0,47,60,211.52567519999997,0.7592725957929486,0.9904108828758281,1.1702213492913907,0.518536870167132,6.276617105236164,3.892534726437961,22.561387776464457,59.16809875876771,28820.147783251232,6096201.219215999,0.11313156320370137,13270.199906910984,5263.024726725537,25807.141039513273,52388496.31021194,2.0227827930215168,3260.4683704809004,38368,133.38684354679802,444.2973085714286,8.919112110900878,8.833585700225829,67.21333092735692,32.61622035531184,3,22.20591823517091,1,63.014503172133736,3,52.349203688156884,2,-0.9567909007387713,1.8773031436530392,0.601810284161227,7.474493689368269,263.5667724609375,820.6689453125,0.0013127815909683704,2770,-0.06516402701873554,4679.2290640394085,989777.0871863998,0.2803557202758992,5848.957367885947,2313.2632332954763,4137.739661341913,8399611.512524083,2.0227827930215168,1311.8486345846902,11625,0.5564339675370766,1.5431603504296882,0.7275109806110316,7.319755939568238,506.0631408691406,27.701658248901367,0.05419059097766876,2534,-0.06516402701873554,0.6369883609760268,-0.36955219579282383,0.5464825644883399,7.542204868623342,128.87400817871094,352.2409973144531,0.004675879143178463,2635,233,0,255,164,2046.0680582399998,1939.8739559991852,21887,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62,1.6873651509677419,104.61663936,2.1988041344181157,0.7798176595805192,1.3415496343132647,0.5319479074952972,0.5509269154051324,5089.673236354377,532464.5094279298,0.3427988325072076,2.7813520522574207,9.399395834894555,6.1616130402725595,0.9155598386759061,4548.183833656882,475815.7078686642,19.370155701872722,3.6467803273944153,4.387096774193548,0.032392788315698175,5300.435820646891,554513.7826994414,0.07199810471834055,0.8104912308771993,1.7591848513658264,1.3769041938993103,1.000185156132662,2287.429076908934,239303.14280055964,0.032392788315698175,"CurrentSlice","Yes",1495.952999830246,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",7,3,"D - 7",1,1,,,,1528,0,64,9,29.801154239999995,0.19517576951347218,0.12673831545827863,6.364254975288637,0.024629067694062146,5.494148630902126,4.254047575778866,20.33896174341257,43.80347089661474,29566.066433566433,881102.9060567999,0.35579996563912153,1465.343912145215,4581.9036504818105,23952.399766899765,6850386.333333333,1.9138597294675488,10519.605421146922,46435,505.51270069930064,452.0486685314685,10.898836935424804,1.3813002336502074,1.7145208349477121,28.60620607154295,1,28.60620607154295,1,75.71013643545417,4,57.356905849248676,2,-0.38030876415657056,-1.329550169488227,3.545405643307741,5.646297444658175,15.765432357788086,1059.6419677734375,0.0015406780876219273,405,-0.5917691649621762,3929.573426573427,117105.82378271999,0.17847776470100915,459.5451403393817,2053.2191393497087,3163.1150932400933,904650.9166666666,1.9138597294675488,701.3414814033104,5761,0.4786569798749435,-0.7936181328530378,4.009976037948066,5.5632538984721185,51.03529357910156,20.164705276489258,0.05900980532169342,170,-0.5917691649621762,0.4399314523151208,-1.0746605564663803,3.545405643307741,5.646297444658175,23.86552619934082,676.9706420898438,0.0017923378618434072,409,1270,0,394,164,3132.9765892799996,2459.703628562876,30899,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,206,1.1993098089320386,247.05782063999996,2.7490625068851893,0.6068385361347401,1.4931318314457416,0.3429627019795718,0.4837642117468698,4455.897520797582,1100864.3304834294,0.23544834180776475,1.678054726400528,5.813620032570913,6.864534278306758,0.9732656744769003,3689.4391874642483,911504.8050387294,33.75165074773639,2.9731384426350154,4.563106796116505,0.19991120265366324,6245.561892738043,1543014.909892094,0.05350618017379247,0.9214747628229915,1.1125637241383604,1.9734121563273201,0.9972072280444503,631.8952260713759,156114.65742601422,0.19991120265366324,"CurrentSlice","Yes",1510.7569999694824,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",4,1,"D - 4",1,1,,,,1312,0,44,19,64.81230047999999,0.670851452566272,0.49697352835882674,1.4996925649740278,0.28869073499435305,3.9331445829374085,2.8616879853755,14.25080657927824,34.84339531041684,30049.4308681672,1947572.7426806397,0.12675700896610723,3089.9890490884195,5535.213609673562,26558.559073295408,16519423.743589744,1.2766264432906114,3808.9759779826895,37837,429.55909389067523,450.5187781350482,7.044365258789062,3.50086305770874,-7.975504937841648,25.143367990136834,3,16.443011961357318,1,30.693601623892448,3,33.228981851076966,2,-1.2053530185697006,0.8828444935628443,1.7214462216064763,6.385294707325542,69.93913269042969,867.7092895507812,0.0012674872996285558,805,-0.2653478045110761,2923.9405144694533,189507.31120943997,0.22013300816680345,598.8105894958319,2290.3649927011948,2107.60718113612,1310931.6666666665,1.2766264432906114,643.6558211509516,11874,4.481391547087875,59.914397867992044,2.3211091696735973,6.155098049122241,143.81944274902344,12.706018447875977,0.10686792433261871,432,-0.2653478045110761,0.5564595820565029,-0.2744224564202469,1.7886498278553777,6.357708243535827,77.99449920654297,166.5669708251953,0.006593841128051281,545,1244,0,131,77,678.8619575999999,3026.3619339984652,47115,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32,3.181351365,101.80324368,1.1690330592613034,0.6994198855903899,1.9522589018096859,0.41850949929597303,0.9713074724586694,7059.621791290187,718692.3975073529,0.3410914053048679,2.876355185562285,8.64796462795858,7.529364028926636,0.9217432462604135,6243.288457956854,635587.0162499129,13.77331958290152,3.485878303662041,3.5625,0.14506340463114245,7080.917277860995,720860.347116005,0.0847488579498065,0.7736581830196899,2.028409432928214,1.7105729134142693,0.9901298029645342,3590.0454829891996,365478.2751270327,0.14506340463114245,"CurrentSlice","Yes",587.4269998073578,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",4,2,"D - 4",1,1,,,,914,0,64,6,17.08877376,0.11907760367244513,0.07086826617801359,12.063341497881472,0.008331795611152049,5.727951529600611,6.826472068137395,20.33896174341257,42.466389517274386,13540.274390243903,231386.68570319997,0.14136482551852714,461.93112426386847,5605.460776225145,10417.360741218834,1708447.1615598889,2.4764172352041376,1914.118526649811,18320,303.0993585365853,452.29988048780484,11.428504568481445,0.8099183037757873,-0.8299230235528615,26.89403299112362,2,22.283396788709858,1,38.50574314805276,2,38.50574314805276,2,1.0629357130822261,0.1459647197478917,6.246281975014872,5.082960399030053,28.100000381469727,196.78125,0.005501417443156242,160,-0.6477303864911929,5510.804878048781,94172.89779647999,0.20361533512669563,556.0490379447182,2225.3135698252036,4914.559752700591,805987.799442897,2.4764172352041376,1122.0843820617315,6952,-0.9296356429186401,-0.31409410617361244,6.618084473527662,5.040695327044691,29.928571701049805,32.71428680419922,0.03753902390599251,112,-0.6477303864911929,0.9255131281119182,-0.00336392336037461,6.469363474122546,5.057601355838837,32.53845977783203,323.9294738769531,0.003178143408149481,156,664,0,327,69,1312.2927849599998,1675.9425917103383,13272,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,1.82928608,32.927149439999994,2.0419811295515315,0.6930919824224583,1.4809313898746381,0.49018884181233663,0.6091354666644342,4639.15877842394,152754.2743730529,0.385428973189893,3.6953118831357634,7.780623406715165,5.1157791077119565,0.9081615306988048,4042.9136530757505,133121.62202784154,72.33432838449582,3.1783189916215058,3.111111111111111,0.1236448615539988,4171.034829615307,137340.28715418815,0.07237857303504715,0.9405838537605216,1.3356228504484733,1.0071238793672612,1.0017851393691954,1048.1211805902371,34511.64274452396,0.1236448615539988,"CurrentSlice","Yes",602.3699998855591,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",4,3,"D - 4",1,1,,,,1115,0,31,10,23.132364479999996,0.5726174298045155,0.3603660098851134,1.8254041922204867,0.18585298956624452,2.59238550312604,2.1447077608534673,9.689378506385225,22.53111393107649,44189.72972972973,1022212.9343807999,0.31516220001159284,1419.908403331996,5205.585866511695,,,4.675423743180984,13926.93243953931,65302,364.40630270270265,451.72224864864864,4.881818965530395,1.7592416215896605,-4.746728197366283,33.000050898938674,2,23.23167684158211,1,37.6631759319418,3,33.000050898938674,2,0.18769576275209868,-1.177174225414822,16.841165489814138,4.984169164476832,10.683646202087402,1837.286865234375,0.0007907852996140718,373,0.7504504919094347,11627.509009009009,268971.77639088,0.2834744205131762,578.7323657821546,2486.942285384829,,,4.675423743180984,3296.101378340564,17463,-0.04996280658261047,-1.027100874607305,4.626247869491113,5.383943674289578,24.060606002807617,148.5833282470703,0.009265000000596046,264,0.7504504919094347,-0.14696385624585198,-1.1969073734802511,6.492979465952439,5.262505996177681,8.960563659667969,1922.104248046875,0.0007948398706503212,355,1077,0,88,36,235.59583823999998,5164.0039805395845,38204,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14,1.012227017142857,14.171178239999998,3.5472478970779817,0.6990152231709376,1.3716341449096963,0.39544650645966567,0.3878477089766012,9304.379833179004,131854.0250286411,0.17572551717860838,3.2428614278387298,,10.959910865762856,0.9721082069016587,9304.379833179004,131854.0250286411,10.406389399863041,3.0418236227630704,3.7142857142857144,0.08560481810288754,5635.806492732073,79866.01833465545,0.07156140032291398,0.9590227215366871,,1.5419956046270942,0.9989469375155974,5635.806492732073,79866.01833465545,0.08560481810288754,"CurrentSlice","Yes",617.3329999446869,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",4,4,"D - 4",1,1,,,,563,0,37,21,54.07971695999999,0.6881096915190381,0.9538005682538967,1.312113026685253,0.4266758605509301,3.360569494630829,2.6300067053306138,12.716845193679129,31.426303448350875,40198.601156069366,2173928.9727081596,0.1748292308468339,3193.910181905386,5488.245931858487,,,1.1379077688954953,7027.890521234256,49398,186.2730150289017,450.20088786127167,4.863094844055175,4.638422625732422,-21.31770507121826,49.129906736072,4,28.13924351256135,1,49.64612978090942,3,28.13924351256135,1,-0.9826486197041507,-0.017145757992316213,1.9861821124810197,6.230535183957874,39.196929931640625,1525.51025390625,0.0007772126118652523,782,-0.2953367594148599,2670.416184971098,144415.35144864,0.27923909030367294,402.0503826093292,2346.777355745734,,,1.1379077688954953,745.6845862235343,5321,0.6050535799051103,1.3193874914762374,2.364856085327869,6.100961335118389,97.46470642089844,10.897058486938477,0.14676307141780853,340,-0.2953367594148599,0.8043458974828178,0.05669271173084045,2.067856890938183,6.201153222546855,55.7054557800293,110.35818481445312,0.012610068544745445,550,542,0,130,37,279.77657039999997,3297.0465549348232,14037,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,1.0535761599999998,9.482185439999999,2.7070692269218086,0.7956672661540155,1.4383200493183295,0.5710836618759587,0.43359682647998377,5964.565397002352,56557.11516338351,0.17723216132239192,1.6450621890204662,,6.027287412749909,0.9826887287818435,5964.565397002352,56557.11516338351,8.7663497575461,2.967700452855653,3.111111111111111,-0.07512751618291283,9515.290548742722,90225.74949865784,0.13879366110449406,0.8150114190811072,,2.331484526513385,1.0089831263106426,9515.290548742722,90225.74949865784,-0.07512751618291283,"CurrentSlice","Yes",632.3229999542236,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",5,1,"D - 5",1,1,,,,1259,0,38,34,96.80165136,0.8095816032782384,0.7759881010683645,1.0701385867287043,0.7424939809494682,4.06042465659951,12.078238153616244,13.8841529810068,38.76287668975719,27983.949407965556,2708892.51426576,0.16519446624381165,7410.442519539626,4604.7215239126235,25496.902366258477,23686622.298254125,1.6337411616886472,4622.793585842699,36158,413.1054716899892,448.13292012917117,6.415363703155517,4.97824589767456,48.8470570346425,19.390661973935977,1,19.390661973935977,1,39.16953920306014,2,39.16953920306014,2,-0.9947054324916544,0.16792879041596764,1.180708680120643,6.766957774066373,90.15264892578125,759.8450317382812,0.0015368915628641844,1284,-0.23025000093493753,3549.5016146393973,343597.61780207994,0.3730595342991991,2274.6536076121934,2172.6217701282653,3039.5666000904157,2823757.371483996,1.6337411616886472,1324.1754193516288,12365,1.4164551992160896,4.734946213073669,1.342925770618082,6.670861768337423,216.05691528320312,17.82012176513672,0.0959378182888031,984,-0.23025000093493753,1.7931530395070483,2.364815137457475,1.2177868722343435,6.74679789795389,96.37609100341797,173.72789001464844,0.011148544028401375,1029,1067,0,344,526,4780.897058879999,1492.1821847347544,24275,8,2.59197102,20.73576816,5.336740114409695,0.7908767951200867,2.206569070029598,0.1898235480494874,0.6835183631022987,7600.549832041344,157603.23920573626,0.0945272874638749,1.6393980887812463,3.4566119205731196,3.230214237775873,0.9913283784550952,5401.70599111021,112008.52310014432,31.061858511449408,13.118752310137165,2,5947.903717700259,123334.35252823467,0.046583970677071145,1.0156111068312692,2.3915525593024918,2.4097587225016115,0.9946927301445833,3460.8566759931787,71763.52166838277,-0.048632121224022405,-0.048632121224022405,331,1.4506128783081569,480.1528627199999,2.2927455909069576,0.7058053034452423,1.4076057483434787,0.48566307247975044,0.5295379084009736,3620.565108698597,1738424.7016057791,0.3361676527032319,2.695012232293285,7.100051977997336,5.088608933583446,0.9338558525865851,3110.6300941496156,1493577.9445689209,61.4800267501196,2.9942983392834757,4.930513595166163,0.13071240909542667,3931.241217661186,1887596.7247028768,0.06983336030825837,0.8568509289080748,1.5806863126170816,1.286341867615881,0.9995430275722053,1444.1941759541055,693433.9679079151,0.13071240909542667,"CurrentSlice","Yes",767.7530000209808,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",5,2,"D - 5",1,1,,,,530,0,63,32,132.75059616,0.63557528010262,0.7870547963752705,1.4078470941898886,0.35385331779828444,5.453886120021306,5.199732807182312,20.932279550971028,51.23180689670175,31478.75196232339,4178823.0893711997,0.14651069936519376,7981.062784475245,5367.859248552806,27863.037676609103,35497510,1.369157978243738,4611.973965143465,38890,182.67692872841445,448.8835516483516,8.571821724700927,6.746493402099609,17.168737613142028,41.90596962484493,4,22.497785068614835,1,39.96483992189388,3,39.96483992189388,3,-1.4626414497886797,1.5641539570499505,0.887204296040358,7.064486962991379,138.00230407714844,950.8731079101562,0.0012107141083106399,1734,-0.3584256828359411,2970.664835164835,394357.52785967995,0.27117991265134594,2126.9805154951882,2169.702022972835,2090.2362637362635,2662960.9999999995,1.369157978243738,805.584630516425,7026,0.7967307238870027,2.0198945345893815,1.184171289576089,6.8319499509011745,293.99444580078125,12.810760498046875,0.11782614141702652,1078,-0.3584256828359411,-0.32072535501449784,-0.9889581302664165,0.885972067851413,7.066108541098366,121.69074249267578,351.067626953125,0.003501783823594451,1523,514,0,239,169,1372.2076929599998,1894.5938947528286,25407,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,64,1.4018134724999998,89.71606223999999,2.6614800006231505,0.678631798407247,1.3598636158915611,0.48018450480927555,0.5002225061944049,4788.819102567785,429633.9926620723,0.3021573031119114,3.5202147151146126,5.439190932658526,6.023880372876863,0.9469454994425522,3908.3905311392136,350645.4081499123,31.985222172876703,3.9227068151257454,4.0625,0.12620173776587557,5232.134723612162,469406.5245116538,0.07256017715429793,0.9857866271576966,1.4470542499124903,1.3934702360386026,0.9994667158721445,1616.4204378978761,145018.8766124539,0.12620173776587557,"CurrentSlice","Yes",782.6899998188019,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",5,3,"D - 5",1,1,,,,159,27,19,22,33.44814864,0.9687977763039604,0.8969098848088566,1.0109507316788662,0.8557041688266516,2.3198564606688197,0.3010060042988686,6.968294299181112,20.829287172482807,9695.059190031152,324281.78086175997,0.16933676563478134,983.3870460525595,4988.120677419704,7279.259190031152,2336642.1999999997,5.033000730423549,1641.729965877638,12645,54.269618691588775,440.7617794392523,3.4539938014984126,3.097921182632446,79.67150288765558,9.06836766284169,1,9.06836766284169,1,10.42723493077929,2,10.42723493077929,2,-0.37407868732347677,-0.8938440523053472,3.270542793645248,5.736891730952573,61.02702713012695,96.37837982177734,0.011754466220736504,370,0.7717650869361112,11675.417445482866,390521.09815055993,0.4343980253493414,3439.6241636949007,2319.7726507185166,11181.617445482867,3589299.2,5.033000730423549,5071.778283447009,27822,-0.1900535323017002,-0.7528326484047816,3.1346745470249706,5.767122449107836,32.125,165.15992736816406,0.022197913378477097,544,0.7717650869361112,-1.0753396744009045,-0.2664793631581719,39.91614988208577,4.952706532231589,12.22702693939209,2242.34326171875,0.0009549674578011036,370,149,14,40,52,150.98556815999999,3434.6970324361628,27822,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",797.5829999446869,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",5,4,"D - 5",1,1,,,,368,0,38,51,141.60758256,0.6771223641851295,0.9048127917021923,1.2484372826023638,0.46107909852850504,5.304404875215373,7.36853534946532,18.102720701596212,51.264249931163505,30403.771891096396,4305404.63820384,0.15334032296126246,9387.32391226668,5253.622848410078,27619.239093585376,37534545.92818253,1.3691163659494487,4662.1242010212745,44214,124.5570949227373,445.4604370860927,7.8667957351684565,7.117977410888671,109.83455736540343,71.79905212561033,4,57.563520476117155,1,59.0755267353851,2,59.0755267353851,2,-0.18051530588481596,0.39573188788408986,0.7975608607159854,7.156994677310467,127.71337890625,927.072509765625,0.0012084025656804442,2041,0.23384279544365028,3204.4451802796175,453773.73542543995,0.3117452554239818,2359.440551680002,2340.5206890923496,2663.61603845955,3619854.1962665287,1.3691163659494487,998.9705812184167,7003,0.4000336806960167,0.1362239961592775,1.021722569023126,6.967064208260619,341.3932189941406,14.283592224121094,0.11135774105787277,1414,0.23384279544365028,0.19222448502431888,1.337131189883583,0.8863592185961088,7.07779319527195,219.3087615966797,583.6785278320312,0.0017750981496647,1574,237,0,220,328,3378.0546129599998,1902.6671704864432,32952,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,202,1.6610073504950493,335.52348479999995,2.010095918553008,0.7053572237259854,1.4703480604205965,0.4753820581305499,0.5863933129382576,4251.894052636649,1426610.309541043,0.30266377675219364,1.932955521462579,7.861806481669295,4.669872071349343,0.9504177759955272,3711.0649108165812,1245149.4311961804,46.91234505769011,3.0619405615858524,5.0594059405940595,0.10893329944722237,4987.137894412006,1673301.8855112507,0.06904032968662746,0.7687710700838378,1.7910142408341558,1.279545703588398,0.9995004050415462,2202.605096900987,739025.7377504609,0.10893329944722237,"CurrentSlice","Yes",812.5199999809265,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",6,1,"D - 6",1,1,,,,1388,0,38,52,127.74900383999999,0.6648537228759938,0.8716330227659108,1.4344297233212258,0.3114257547514676,5.400431275123919,3.212950554205957,19.06980444577238,49.138358069097535,39158.88907014682,5002509.070192319,0.20416563337940843,10933.146601059063,5149.514260708965,36292.68907014682,44494836.800000004,3.371635733136311,7994.899389440519,59941,453.7312081566068,444.66542544861335,8.140901259613036,7.095878372955322,64.64252502603982,26.29954465398742,3,12.96847158133781,1,20.949449689782455,2,12.96847158133781,1,-0.19952791289405417,-0.3485533402884937,0.8529176169401946,7.079851233860467,70.44039916992188,1536.381103515625,0.0007970469305291772,2005,0.060171747943335054,8625.746329526917,1101930.5009736,0.40386421481783485,4005.215754033965,2558.326881149527,7965.946329526917,9766250.200000001,3.371635733136311,3483.630268592209,25427,0.7810335794177148,0.6376474656818378,0.8888439440187987,7.050025049902163,149.60899353027344,95.08423614501953,0.019126879051327705,1757,0.060171747943335054,1.3690151305028935,1.1607847694592124,0.9567047840561622,6.999695808382412,113.46444702148438,207.68296813964844,0.012751497328281403,1533,1352,0,191,100,1109.93669568,3329.2423019151333,27572,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,61,2.0002952891803276,122.01801263999998,2.3819695253118796,0.7519241023395762,1.581832349848298,0.4637084273262144,0.6435792463820734,5678.01660134209,692820.301432689,0.33161564767957935,2.9123214775901185,8.605663233316294,6.021078207217213,0.9385478421243555,5018.21660134209,612312.8166928169,22.286815492184115,3.4351974492014135,3.8360655737704916,0.027928254601417776,5230.064345688193,638162.0574401951,0.09293573154407883,0.9299199690619769,1.8247381012100317,1.390811452564121,1.0051277033468136,2363.8643456881928,288434.0296114272,0.027928254601417776,"CurrentSlice","Yes",1301.9329998493195,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",6,2,"D - 6",1,1,,,,80,0,54,61,213.29707247999997,0.706204649300927,0.6485734811615407,1.3227413070237735,0.3729490077817774,6.701005591453497,4.559526812818105,24.302359826156795,61.6072882760421,25716.485588666343,5485251.090536639,0.14000749659886166,12822.08693278719,5478.450604301297,23149.247964903967,47386510.58415842,1.7711315948813722,3600.5007685898777,35965,33.70965549584758,444.05232164142643,11.24416387939453,7.292666510009765,122.64223858451298,41.45035039828975,3,32.24175773223112,2,32.24175773223112,2,32.24175773223112,2,-0.8208858273374992,0.9552072087728751,0.5806392950805079,7.499416997687185,229.9096221923828,650.6146850585938,0.001720427768304944,2777,0.11693184823387351,4709.207132388862,1004460.0950404799,0.30908932235409536,4020.3265013367245,2658.8691354152475,4134.1675284284665,8462640.930693071,1.7711315948813722,1455.565641375146,11461,0.40111617138458044,1.172556950942763,0.7090338453284788,7.341479311083309,467.44488525390625,28.69215202331543,0.05679570510983467,2459,0.11693184823387351,0.31829716038587097,-0.6241590901850493,0.6445979186241068,7.420230726861037,240.5401611328125,69.06824493408203,0.020408904179930687,1905,0,0,183,330,1887.7885012799998,2658.918474361097,30095,1,18.755971199999998,18.755971199999998,0.1819501034678914,0.8377809511553633,2.8797234236078175,0.3391765036984432,2.931940953892315,7417.977777777778,139131.37756223997,0.3553677025326688,1.6636311799248047,2.7198614524580815,2.4211729081187987,1.0893575137215505,4690.641144114412,87977.53020854495,20.736243698468243,,,3084.233333333333,57847.791574079994,0.1734935072977135,1.0072910576396228,1.201382102219771,0.9803941531270802,1.1151125604704104,516.9957095709569,9696.756639236432,0.7146942505664775,0.7146942505664775,82,1.6074731414634145,131.81279759999998,2.8196262151247953,0.7102310444040616,1.4861645747517385,0.4539206610910067,0.5405546740295313,5668.867087033721,747229.2299644774,0.25635845312177635,2.835028314578741,9.858220282553175,4.780731088926189,0.9301212346065391,5093.827483073325,671431.6510356616,37.65384356748964,3.4180521675409112,4.414634146341464,0.14827815140062764,4891.626697433601,644778.9998035717,0.06900612232192539,1.0413488548238286,1.9054047245789238,1.0807529026151512,0.9996869624569252,2324.389073671225,306384.2265114766,0.14827815140062764,"CurrentSlice","Yes",1316.789999961853,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",6,3,"D - 6",1,1,,,,708,0,23,20,32.822949599999994,0.7575875063691144,0.6757449069857272,1.1896608116592164,0.6058385386240305,2.4929321165800253,8.964628494144833,8.721575729190224,23.3333627586807,47052.584126984126,1544404.59734976,0.22048203537281197,2645.344400675338,5690.069400870439,,,1.7436532971782281,10374.249517867926,60999,231.3072076190476,450.4074514285714,4.131520825195312,2.791854155731201,-40.29302613190369,12.36074941067982,1,12.36074941067982,1,24.461651302880835,2,24.461651302880835,2,-0.8170140309563092,-0.19764105806069,3.214915595867977,5.743770769866142,17.775279998779297,2148.631103515625,0.0006128588574938476,534,0.17662666026086715,4259.993650793651,139825.55689632,0.1476056242357176,576.8821724391017,2443.142600474327,,,1.7436532971782281,628.7990220655904,6741,0.04584733596608112,2.3979042689296692,3.8800705467372136,5.604019590557425,71.4587173461914,21.288990020751953,0.05564459413290024,218,0.17662666026086715,0.983369151326865,0.5633579105838615,3.27538422776518,5.730567966426905,39.769229888916016,313.32257080078125,0.003604083089157939,403,668,0,115,210,1021.9920307199999,2388.2309339314843,32523,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46,1.8121711304347823,83.359872,2.771231873656695,0.5870364730697141,1.9565011655528959,0.2727672050116314,0.6726906489604012,5655.150509614906,471412.6226222333,0.24968577089714775,2.1006474269037914,,5.4398805822642275,0.9848475778771466,5655.150509614906,471412.6226222333,19.211202992367216,3.3082395728215186,4.608695652173913,-0.05918738221310943,5951.397884181259,496107.7658464204,0.05248984371396663,0.7902234863792582,,1.3307440390808027,1.0019126527148658,5951.397884181259,496107.7658464204,-0.05918738221310943,"CurrentSlice","Yes",1331.6669998168945,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",6,4,"D - 6",1,1,,,,638,0,45,23,69.18869375999999,0.6372728579091116,0.7769325189836451,1.415930836777713,0.3657257574665792,3.9486499566395823,4.780000344156554,14.90483340665034,36.93684413802105,25944.751506024095,1795083.4666295997,0.17472999769634592,3501.597822903103,5516.1592041472795,22966.5621120847,15249797.24242424,1.7818761795211826,4533.326370879858,34895,211.5268536144578,450.0770259036144,6.2363345901489255,4.8452111423492426,-16.766079390882282,8.538173160632038,1,8.538173160632038,1,16.46420451448525,2,16.46420451448525,2,-0.5001829867241276,-0.42644359726019454,1.5559224851212077,6.476616198038235,56.149574279785156,662.0780029296875,0.0017688209190964699,936,0.2845752713188155,4693.067771084337,324707.22880847997,0.1726480323028976,915.9859227409578,2633.778836611103,4076.052619569186,2706498.9393939395,1.7818761795211826,810.2489161418564,8028,-0.21015533144756965,1.087336195051357,1.9052112062708666,6.322355001171586,138.20370483398438,26.642593383789062,0.04656318947672844,540,0.2845752713188155,-0.10180447383934729,-0.6047705064282027,1.55138626796342,6.477404222351134,62.053192138671875,442.1617126464844,0.002740098861977458,940,550,0,175,166,587.47869792,3554.0643845335226,51268,1,0.31259951999999996,0.31259951999999996,2.356194490192345,0,1.3962635032204505,0,0.26356509632730535,9098,2844.03043296,0.08038971984776085,1.2128726070495388,3.304813010814827,3.3047774390804308,1.0321499230299738,6345.045454545454,1983.4581634690903,17.836888788435477,,,3533.3333333333335,1104.518304,0.011350197561803133,1.0892798421571852,1.1864031684901086,1.2228753544464632,0.9941037735559733,555.1439393939395,173.53772898545455,-0.1651893590844616,-0.1651893590844616,20,1.6828274159999996,33.65654832,1.9248848973986274,0.533331884836491,1.4175856452611728,0.40631948399486256,0.6012174408083554,15483.448132627507,521119.4202359914,0.3675630139993208,6.3253326500981055,25.094113320566155,15.119308276625349,0.9138725851187857,14866.432981112355,500352.8199748496,24.913472062765713,3.5081456113171487,2.4,0.21392014701249523,6912.20396260588,232640.92666514026,0.08186758939851076,1.4897529756588572,2.320941702590236,1.6968510070470433,0.9968211586844807,3934.0145686664864,132405.35142190754,0.21392014701249523,"CurrentSlice","Yes",1346.5999999046326,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",7,1,"D - 7",1,1,,,,519,0,37,33,87.42366575999999,0.8066451988875009,0.6923816842024177,1.1139321097210513,0.6408575172965476,3.9368960185715207,9.893624762214603,13.622771929383532,36.904401103559294,32389.141835518476,2831577.5100815995,0.12023670621877022,5507.110614901802,5614.414453148302,28532.348139243404,23938640.088825215,1.7784044205021756,3894.363731555315,38445,172.5675718712753,448.3518865315852,6.47411674118042,4.482559852981567,132.13506757588394,93.78767242741901,5,80.05824687496123,1,86.75605301256066,4,81.10298648811549,2,-1.083055805728239,0.5184969382665576,1.285655634652184,6.678712890377097,92.74445343017578,1011.2794799804688,0.0010704376036301255,1127,-0.7096802067475542,4131.562574493445,361196.34557904,0.3567513448413653,1668.3328517219513,2323.185056707629,3313.2044083043334,2779778.498567336,1.7784044205021756,1473.9405047467899,10650,1.2740808441552787,1.5413142302829712,1.5243187800903795,6.55806141191642,166.31503295898438,24.22076416015625,0.07026097178459167,838,-0.7096802067475542,0.6411508377726735,-0.690833143796628,1.234513532058285,6.707425944349449,73.05944061279297,230.62413024902344,0.006597908213734627,1144,402,0,352,338,6631.590417119999,2104.8266580770864,60533,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,591,1.2951810907614212,765.4520246399999,2.560362802145959,0.6703814263053791,1.531126612443499,0.4153140921696043,0.5148615004724231,4428.314675414325,3389662.4340389194,0.30192131507350517,2.4042652126225947,5.411218288485925,4.492410582603776,0.9617963807101988,3609.9565092252137,2763248.518848786,46.186857830770585,3.0055758823377676,5.2758037225042305,0.03546914642466617,5182.883126347318,3967248.382535047,0.05864452411925695,0.8020385787365076,1.3438320881287986,1.132677946872301,0.9986071740655723,1326.0894300722457,1015057.8391025041,0.03546914642466617,"CurrentSlice","Yes",1481.1299998760223,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",7,2,"D - 7",1,1,,,,573,0,39,29,79.81707743999999,0.739596384209243,0.8099800866084391,1.1431175509778257,0.6510058842238179,3.8106883851666846,2.3877048549327156,13.733233792519517,36.826076689757194,30880.278067885116,2464773.54591312,0.14324141324089462,3961.473694511018,5263.024726725537,26869.393857358802,20581955.694736842,1.5574925877730343,4423.334671715666,40738,192.16166005221933,449.1226809399477,5.922438114166259,4.797056936645507,31.629367151167678,45.208699596405964,5,34.46666242064962,1,38.60914973415644,2,38.60914973415644,2,-0.9863278280305013,0.7928002689439992,1.3838801818813953,6.5995571432317695,74.43280792236328,918.876708984375,0.0012282318202778697,1079,-0.09738591542388597,3602.8903394255876,287572.17722976,0.20185748463568917,1124.8667881717638,2313.2632332954763,2645.8692867940085,2026735.8736842105,1.5574925877730343,727.2703813346735,6930,0.11449708149409678,2.058608212862384,1.8747145321053384,6.374833703306765,182.22650146484375,17.14329719543457,0.07914307713508606,649,-0.09738591542388597,1.1434094047248513,1.239473736432644,1.5986202101043705,6.493427611601136,135.54754638671875,109.38032531738281,0.009789644740521908,610,489,0,172,103,1177.4581919999998,2531.375752212389,36661,1,4.480593119999999,4.480593119999999,0.8836963743159717,0.5215390406517558,1.277863652527171,0.3909165159996757,0.9545970334999834,7800.674418604651,34951.648131359994,0.07330878273018906,1.122602951442272,0.8024298960693449,3.1399334757531934,1.0126042437720728,0,0,14.039781841701055,,,4497.6511627906975,20152.144856159997,0.06619431498092616,0.9949304022239331,1.1213615070180516,1.4924393289546058,0.995749961899563,486.76695226438187,2181.0046573591576,-0.09932882374950312,-0.09932882374950312,39,1.779412652307692,69.39709343999999,2.662719823732573,0.703835046862844,1.430800010374921,0.4851453709510018,0.554595126488406,7568.595465133044,525238.526703398,0.2695844134238012,3.5869904834884423,7.908494222066711,9.162622893236067,0.9568740151818156,6611.574412501465,458824.0472898772,17.75339841359072,3.773246180124621,3.4871794871794872,0.07511492367607091,6343.971796545186,440253.2035455709,0.049006478695298755,0.9153441334764318,1.58168908987595,1.6479854993463428,0.9987807684181293,2333.0875860188708,161909.4972106556,0.07511492367607091,"CurrentSlice","Yes",1495.952999830246,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",7,3,"D - 7",1,1,,,,110,1,8,2,1.3545979199999998,0.6875597939048232,0.2696531056659069,2.30507412706227,0.08703408399453727,0.704948993244853,12.272272045463444,2.282540689670175,4.975708137934035,12523.384615384615,16964.150751359997,0.020189513001115947,18.147302652982354,4581.9036504818105,,,2.265785349939445,252.84103651028312,12879,36.82403076923077,452.4414461538461,1.3613692016601562,0.36709743318557736,4.692020610453655,27.894031140021582,2,27.894031140021582,2,27.894031140021582,2,27.894031140021582,2,-1.008486260980335,1.1069908220944376,76.92307692307693,2.5649493574615367,7.7272725105285645,164.4545440673828,0.006103938911110163,11,0.6581106037001866,4652.153846153846,6301.797923519998,0.05563763548768784,15.785318706336959,2053.2191393497087,,,2.265785349939445,258.8348399249527,4927,-1.0276158091111958,0.025567963054176968,76.92307692307693,2.5649493574615367,7.7272725105285645,23.363636016845703,0.04409090802073479,11,0.6581106037001866,-0.3701641206791407,-0.727075099821684,76.92307692307693,2.5649493574615367,5.470588207244873,344.058837890625,0.0029311480466276407,17,53,0,83,25,129.41620128,3839.8735909822867,9080,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,0.45153263999999993,1.3545979199999998,3.082583923889715,0.333055997223573,1.1523051751324602,0.25154800250024706,0.28509025311981206,7294.0888888888885,9880.557637183998,0.09674267639354274,1.970805276382351,,11.236910851987428,0.9655661146321707,7294.0888888888885,9880.557637183998,10.63773558308433,2.4320866768696088,2,-0.37490477313415144,8408.811111111112,11390.558040784,0.03237483946847008,0.9952035657443061,,2.656934692492833,0.9998127124289286,8408.811111111112,11390.558040784,-0.37490477313415144,"CurrentSlice","Yes",1510.7569999694824,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",4,1,"D - 4",1,1,,,,1361,0,49,23,82.21367375999999,0.6588960145678241,0.5794211354935681,1.4187852923058004,0.3474219149384814,4.308642353867224,0.4830470728074385,15.971261951392568,39.59756855182316,32148.98732572877,2643086.3557118396,0.11422514027472623,2144.935339454559,5535.213609673562,,,1.0586708756119987,3672.2225869717645,39629,445.9954539923954,450.0511148288973,7.4584896423339835,4.321606537628173,-10.092996748837383,21.56059223572967,4,17.1518680876668,2,18.4128554898462,3,18.4128554898462,3,-1.1835242257021086,2.030319695209103,1.3830858718019152,6.6086071943782425,81.90890502929688,996.826904296875,0.0010861190967261791,988,0.08110175963190958,2424.742712294043,199347.00630048,0.2040878569556362,561.3151264320561,2290.3649927011948,,,1.0586708756119987,494.860543820888,4539,-0.1529078624313656,1.3865971880415309,1.9935070463486375,6.328261434255406,187.5325469970703,8.341222763061523,0.17060540616512299,507,0.08110175963190958,1.0408512606084905,0.9950907069118471,1.4601917043762378,6.567532392794565,129.2828826904297,119.80622100830078,0.009077144786715508,707,1358,0,63,45,133.37579519999997,2802.0234375,14779,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3.8901273599999997,11.67038208,0.6690795637022613,0.5972894084802977,2.3852912000416033,0.28463016865987945,1.2150520861734588,8078.61542673108,94280.52870733394,0.3404123901459844,4.274662188680858,,8.616160779690203,0.9672393701439175,8078.61542673108,94280.52870733394,7.365426327496357,5.8623149591124095,2,-0.20932181619414533,8469.22222222222,98839.05925375997,0.07820897540763837,0.815641024454437,,2.0459527434835167,0.9868543318562857,8469.22222222222,98839.05925375997,-0.20932181619414533,"CurrentSlice","Yes",587.4269998073578,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",4,2,"D - 4",1,1,,,,1261,0,89,18,109.51403183999999,0.34606845181313634,0.23420621155773258,3.052220944846993,0.06846744155508833,7.293784569728181,0.6512961731262076,28.40823403170285,63.06070344835087,39349.0608943863,4309274.30766192,0.20400088823349646,5829.3739335078135,5605.460776225145,,,2.423677502761601,8027.243373608745,49193,423.28355509039005,450.83611684110366,14.202606472778319,3.326338656234741,3.9687187116362845,46.287815209256884,4,35.886880816408045,1,42.97662010753058,3,36.35128145735619,2,-0.8768041121573096,-0.10761851196056904,1.002171824939503,6.9205646952239,55.53342819213867,1429.5419921875,0.0008961461717262864,1406,0.2656733326163919,5393.442435775452,590657.62663872,0.2356113021170539,1923.9807402775627,2225.3135698252036,,,2.423677502761601,1270.7559951864291,10014,0.5026018866291113,0.08369136156251233,1.19228572126949,6.795205828963288,134.4132537841797,36.13963317871094,0.036667510867118835,709,0.2656733326163919,0.21009270873251173,-1.0327498231435055,1.0420052127419765,6.894009664498332,84.19884490966797,435.838623046875,0.002590026007965207,1041,1230,0,184,58,693.4499351999999,3332.717355371901,14228,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,1.924632338823529,32.718749759999994,1.7064401082939002,0.5977500894753924,1.4012667737227311,0.4267324189911248,0.6264810263720861,4645.133679959538,151982.96647634404,0.2788076476371801,2.3122460693364073,,5.12236786181725,0.9532424483581764,4645.133679959538,151982.96647634404,14.124236683827661,3.726849253827218,3.176470588235294,0.22067864674962415,6518.093206829351,213263.86054660546,0.06045838360806136,0.934764364925568,,1.573836610025338,0.9972942378916898,6518.093206829351,213263.86054660546,0.22067864674962415,"CurrentSlice","Yes",602.3699998855591,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",4,3,"D - 4",1,1,,,,1161,0,77,48,286.65375983999996,0.7862873674571884,0.8954100483513481,1.217386992569732,0.4353376142394896,7.45252131369437,1.3561992525586075,26.15476915593024,67.68510455191017,26051.30279898219,7467703.896058559,0.18124750478546484,12172.268732785804,5205.585866511695,23312.605163847053,64132976.80574324,0.9196668942675906,4721.733628726118,38053,386.861308615049,445.7654442748091,11.104815509033202,9.94336339187622,-19.691079664837076,23.23167684158211,1,23.23167684158211,1,50.206226540303845,4,36.72519105855689,2,-0.06763064670770831,-0.019485107329967555,0.4227007898122635,7.8112996083336235,238.43228149414062,703.4195556640625,0.0016651995247229934,4009,0.018895620838843254,2287.15848782261,655622.5798843199,0.4439436281646654,2471.857229359367,2486.942285384829,1695.7513932280153,4665012.08277027,0.9196668942675906,1015.3694372715792,10128,2.0429387413258766,7.1714959619376195,0.7496034950312507,7.341279134668448,744.458740234375,10.156671524047852,0.1978449523448944,2668,0.018895620838843254,-0.027820043124638906,0.07730831928049708,0.42164370749951013,7.8123074559244055,216.86483764648438,311.6850280761719,0.005582394544035196,3921,991,0,322,85,1633.74929136,2500.1254544294916,36785,1,0.20839967999999998,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,14476,3016.7937676799997,0.18444564836698008,0,4.625411884844419,5.310117392589523,1,11346.33277027027,2364.5721184978374,22.725372031902396,,,4158,866.52586944,0.03299151408133483,0,1.5182398913470536,1.3940410327141919,1,1419.302364864865,295.7821586610811,1,1,56,2.041200437142857,114.30722447999999,1.9652115269794084,0.697002734955799,1.5836098469765454,0.4621478488256185,0.6704681544049275,6877.453122146925,786142.5778839253,0.2694851816453571,3.178491238045415,11.628966214653497,8.101160373247481,0.9499309615048842,6286.046027552331,718540.4743630366,20.71330985285541,3.4145513927627325,4.071428571428571,0.12044346031385098,8210.033745053111,938466.170284161,0.08581916318481263,1.005568901203587,2.9977875760089177,2.2463219709615867,0.9986969545365111,5471.3361099179765,625413.2449219241,0.12044346031385098,"CurrentSlice","Yes",617.3329999446869,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",4,4,"D - 4",1,1,,,,755,0,56,40,98.57304863999998,0.25383395118426777,0.474673901073853,2.1120157238870045,0.31634370933342637,5.756224901436304,0.8201674802985495,21.130459398697415,69.85687779331649,47271.86257928119,4659731.6093308795,0.1282659537720586,2253.8697475882345,5488.245931858487,,,2.444920443048788,6063.370540313187,61552,250.97768245243125,447.4707513742071,10.399397323608397,4.936322496414184,-39.404417481698665,33.85733961434866,2,10.9276062856203,1,44.15897282353881,3,10.9276062856203,1,-0.14646498079514894,-0.011169198784070744,1.110718771370721,6.817072310418816,75.35309600830078,2170.6474609375,0.0004952919553034008,1535,-0.3269821826174729,5737.683932346723,565580.99734416,0.2706401651880551,1278.117835609551,2346.777355745734,,,2.444920443048788,1552.8477272471669,11420,0.8068343946082284,0.138990286505849,1.2559838018316802,6.73113655859105,179.05123901367188,40.73990249633789,0.03280939906835556,1015,-0.3269821826174729,0.024913721362701008,-0.6705635190990753,1.110718771370721,6.817072310418816,66.98226165771484,1246.2393798828125,0.0009244970278814435,1466,725,0,86,40,226.53045215999998,4895.519779208832,13073,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",632.3229999542236,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",5,1,"D - 5",1,1,,,,1297,0,80,29,148.90157136,0.3128515449800148,0.36718001711799364,2.4495859060239673,0.1917873038117881,7.61914186490936,5.6963024377500595,26.47156821950675,77.3366615174484,35281.97340797761,5253541.2811296005,0.2206404277809643,6891.282463495142,4604.7215239126235,32363.509122263324,46247454.53571429,1.9107001910901034,7784.629705692786,53577,432.46119132260316,449.29648761371584,14.306449108886717,5.25304222869873,4.848847010412284,24.323684981463174,2,19.390661973935977,1,32.92676207916386,3,24.323684981463174,2,0.41331799016871584,-0.41304208829194566,0.7438636148833446,7.2234908067745325,79.79232788085938,1263.8465576171875,0.0009721776586957276,2085,0.4828350687494801,4151.228831350595,618124.4960630399,0.324938695643305,1989.2671200235388,2172.6217701282653,3541.871688493452,5061334.642857143,1.9107001910901034,1348.8948817759438,8699,0.4833608984506545,-0.5352970544528546,0.9377872432531962,7.051376353173763,235.43478393554688,23.548309326171875,0.06581589579582214,1242,0.4828350687494801,0.8745832988980453,-0.29333687521465146,0.7624724479087345,7.203246767926846,90.58206939697266,616.4779052734375,0.0021804438438266516,1718,1294,0,160,405,2444.0072471999997,3053.288083564272,26730,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,127,1.7787815206299211,225.90525311999997,2.5365459770646597,0.7164923385474958,1.5527967800871667,0.45026304505399783,0.5888317125452076,6382.3793932878825,1441813.032348571,0.22321646085764366,2.334074289806563,10.473955164228151,8.970266194129442,0.9573200282718495,5773.022250430739,1304156.0527509481,40.0181104183291,3.2953164798888452,4.692913385826771,0.228864447686779,9099.091548245608,2055532.5793684765,0.05218058138852935,1.0111865565047677,3.117766968328218,2.9773147379497407,0.9964381628908033,6180.627262531321,1396236.1661825106,0.228864447686779,"CurrentSlice","Yes",767.7530000209808,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",5,2,"D - 5",1,1,,,,1101,11,97,77,376.68242159999994,0.18053109343270185,0.5937012101151398,1.697216749382174,0.3049302931199215,10.08710161752582,1.0720361160353735,36.29742107863863,161.92600551779648,49279.47275242047,18562711.131552957,0.1819258888837102,11459.414953969479,5367.859248552806,45035.97275242047,162805041.5,2.3159314034702216,8965.211884204671,65535,372.8343571784232,439.0163043983402,17.347536058044433,10.299253150177002,33.38395922752448,15.598059331243638,3,12.32223784602777,2,15.598059331243638,3,15.598059331243638,3,0.15817914883579537,-0.5393974650747371,3.116643614568926,7.831248323233729,200.2390594482422,2326.83349609375,0.00048794038593769073,5488,-0.2975687191995053,5024.881051175657,1892784.3626087997,0.3343442081498096,3917.729139267446,2169.702022972835,4119.631051175657,14892466.250000002,2.3159314034702216,1680.039876102308,16121,1.2969275059994934,3.316360653376157,0.48109058422241735,7.7658952501293115,971.791259765625,33.1582145690918,0.04595494270324707,5265,-0.2975687191995053,0.02896828568339991,-0.18016754636702537,0.34610668243009285,8.026197132617694,388.9274597167969,539.0023803710938,0.002106531523168087,5487,1009,0,203,95,967.4955143999999,4787.772751750134,18785,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,1.5078329788235292,25.633160639999996,2.4723761814628795,0.6367804779611258,1.521021970721073,0.3779783520429059,0.5316784691678063,7559.8711590696885,193783.3918381363,0.18530709184452082,1.8879817986609368,8.351141849289908,9.509601119027264,0.9812132622370304,6654.6211590696885,170578.9731687763,15.901091367341367,4.891518322361348,2.1176470588235294,0.0702184083936413,19969.552565571685,511882.7488222231,0.11969536040906081,0.7940377407641864,4.705915533303095,5.318474885891559,1.0055021369123178,15726.052565571685,403108.4316463831,0.0702184083936413,"CurrentSlice","Yes",782.6899998188019,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",5,3,"D - 5",1,1,,,,131,34,2,6,0.8335987199999999,0.7398388250087208,0.3626282377452412,2.343922761122547,0.13144217373360956,0.5576480946797899,1.9395941515772135,1.6459634989877507,3.76283255173614,7049.5,5876.454176639999,0.06057743770648384,17.509663141720814,4988.120677419704,4579.479274611399,36635.83419689119,2.818056328914465,427.0406471118578,7565,42.48855,441.10619999999994,1.0484870784759521,0.38021102156639097,83.02376089085313,2.3358447652611596,1,2.3358447652611596,1,7.060973481989025,2,7.060973481989025,2,-0.6997109419482183,0.01880136699266899,125,2.0794415416798357,6.166666507720947,55.25,0.0184151791036129,12,-0.5455714326866591,6537.25,5449.443232319999,0.4088732894450837,36.14224967766597,2319.7726507185166,6022.332901554404,48178.66321243523,2.818056328914465,2672.9069114248737,10531,0.12991569090507177,-1.228877991467013,125,2.0794415416798357,2.5,54.375,0.036362919956445694,16,-0.5455714326866591,0.606567855342286,-1.4900430483952707,125,2.0794415416798357,3.5333333015441895,1091.2667236328125,0.0010133818723261356,15,75,0,93,97,435.24273167999996,1456.7536509456547,31661,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,1.302498,23.444964,2.2140887618180725,0.5948638382145318,1.1110526363454858,0.4607629143977862,0.4564995322955404,5550.189841680458,130124.00103136401,0.3431582773693057,4.0458483455036465,10.778802759580277,7.072008122198729,0.8959790425777973,5035.272743234862,118051.78819532257,7.192928588485582,2.6745303739786186,2.7777777777777777,0.055122945030660814,3917.26381873088,91840.109208648,0.0796010868194078,1.0310143521930895,1.5859234614780766,1.1215348391012763,1.0011494549022195,1447.2430933422788,33930.562222658365,0.055122945030660814,"CurrentSlice","Yes",797.5829999446869,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",5,4,"D - 5",1,1,,,,37,1,27,5,9.69058512,0.3588069245644018,0.19510455065686014,3.9294192404782162,0.039913837577943645,2.461780047639376,1.218031656561393,8.448484503152029,18.422540689670175,6712.720430107527,65050.188714719996,0.16693438224397633,95.52931497522412,5253.622848410078,4250.001680107527,395250.15625,1.3646995481678013,1120.583838176519,7978,15.598529032258062,452.1074322580645,4.8324315284729,0.9428293819427489,-3.7908041114343947,17.00134344331989,2,17.00134344331989,2,17.00134344331989,2,17.00134344331989,2,-0.9233915942378883,-0.2442593635133492,10.752688172043012,4.532599493153256,14.5,47.17856979370117,0.025254419073462486,56,0.9529497850237407,3194.1075268817203,30952.770871679997,0.45528706007892095,108.41273857350646,2340.5206890923496,2712.3575268817203,252249.25,1.3646995481678013,1454.2358254899314,5138,-0.30025624171727716,-1.4394269274519518,10.752688172043012,4.532599493153256,12.107142448425293,14.75,0.21124008297920227,56,0.9529497850237407,0.12699551251277888,-1.558969763609293,11.215169383743785,4.502786711193689,13.26530647277832,411.5714416503906,0.0025928618852049112,98,27,0,72,23,102.42844271999999,2782.971515768057,8220,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,1.9537469999999997,7.814987999999999,3.858240539380468,0.7681497078442956,1.7662334614394957,0.3964622512418162,0.6036164847640912,4371.849289554531,34165.94973567718,0.14203239810080726,2.170680578382077,9.074933657611897,4.801619382961574,0.9667379099394896,3890.0992895545314,30401.079266677185,4.027655130585249,2.994244530234569,2.5,0.09419649542571609,6975.2862903225805,54511.778655435475,0.028165202266330097,1.0822815070284066,2.8323519648041744,1.7896432368717592,0.9950367529958971,4512.5675403225805,35265.66117681048,0.09419649542571609,"CurrentSlice","Yes",812.5199999809265,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",6,1,"D - 6",1,1,,,,1346,14,55,72,253.10141135999996,0.7483124117281955,0.6500917551171084,1.3185435928049927,0.3510390246635158,7.287936827506074,1.5535348025038689,25.799778640910855,65.19446731059088,25350.163441745575,6416162.14531248,0.14801992655146307,11431.703390894352,5149.514260708965,22545.189654065365,54762265.66972477,1.5776194637829992,3752.329330714764,36351,443.24267352820084,437.0383751337999,12.221897772216796,7.945354973602294,57.81784625848766,22.409862738591393,3,22.409862738591393,3,22.409862738591393,3,22.409862738591393,3,-0.5223786396774817,0.5882087259294462,0.49338640189110555,7.664516274070115,283.4246520996094,643.3233642578125,0.0017426355043426156,3584,-0.12102310455969041,4036.0662824207493,1021534.0724231999,0.5587365416500056,3636.4628389085974,2558.326881149527,3459.0217214771055,8401963.761467889,1.5776194637829992,2255.0977165099644,16667,1.5122056528766115,2.6039598760786298,0.6032161471420283,7.506293755159383,487.5760803222656,28.139190673828125,0.08866047859191895,3312,-0.12102310455969041,1.3965066419773684,2.9713417377669513,0.617453336341222,7.485201590937968,461.4085693359375,55.46186828613281,0.02244669944047928,2570,1254,0,151,94,746.38345392,3150.3671645958398,28677,2,0.36469944,0.72939888,2.695060422263236,0.7217777097116362,1.0544697630097406,0.37732200364805796,0.2473765001363366,9399,6855.620073119999,0.10859118651626287,2.623558115914278,4.645287726655305,3.689869267931154,0.9789929936063182,7375.659239842726,5379.797588802935,23.978738043666258,24.494130269107348,1,3788.625,2763.41883174,0.026705141910443896,1.174451800782023,1.3506810711173516,1.3597310618959582,1.0010893427436613,983.6512123197904,717.4740925766972,0.37563649018986,0.37563649018986,26,2.124073661538461,55.225915199999996,2.0166399310643053,0.7205417651591149,1.5232171260387557,0.5410616996834368,0.6675883313303719,8062.765365171577,445273.59633446246,0.3010173724347454,3.320855556262004,13.97251774106752,8.549911745355864,0.9254200866196712,7485.7208042279335,413405.7823451676,17.805637719799243,3.8537020812142666,3.6153846153846154,0.26818721101050685,8090.3119773138205,446794.88320067734,0.10954804330291797,0.9315674526278818,2.884273647350099,2.1514264087670885,1.0123187485078868,5285.33818963361,291887.63866402727,0.26818721101050685,"CurrentSlice","Yes",1301.9329998493195,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",6,2,"D - 6",1,1,,,,800,0,34,16,37.928741759999994,0.6621806451308133,0.5289392199200067,1.363670245355752,0.4060763653950594,2.869121766720448,7.829737780255052,10.671945704509557,26.82877903454877,26045.95054945055,987890.1322838399,0.2703192510889538,2515.657760519578,5478.450604301297,22799.360356806068,8298967.169877409,2.690917205362688,7040.721846427398,37664,263.9776813186813,451.0296395604395,5.071496474075317,2.6825133888244626,4.649999893543887,47.68086733821725,2,42.4637418878887,1,84.78657503641205,2,42.4637418878887,1,-0.056606195104166215,-1.2561634640902857,2.822726723825625,5.878111362676303,26.6318416595459,661.5223999023438,0.002034642267972231,603,-0.6106589355560212,7154.7967032967035,271372.43650464,0.2868397430964857,1907.3281161422137,2658.8691354152475,6537.907036046266,2379798.161120841,2.690917205362688,2052.280048281209,11876,0.851610379603655,-0.47342356598854973,2.883105905083927,5.862877358707952,40.50354766845703,65.61701965332031,0.020180538296699524,282,-0.6106589355560212,0.02251526988759761,-0.7973421026342611,3.3208549692066174,5.7548018360290465,54.488372802734375,27.069766998291016,0.039444442838430405,129,776,0,121,219,1310.8339872,1532.9559618441972,23097,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,1.643515658181818,36.15734448,1.9687965478905083,0.5904650808909699,1.4262521363991505,0.33224463780009866,0.5863229272127741,6754.531533185512,244225.9234464111,0.21307390138396123,5.017974497792294,10.94933485154872,5.696305522084323,0.9701743603550781,6137.641865935074,221920.83124148438,23.850848646494672,4.132761894346722,2.909090909090909,0.1601255948373236,5695.202963932811,205923.41545043566,0.09556756113385619,1.1565488040609522,1.7542106105155915,1.258294533694095,0.9947279929426315,2448.6127712883276,88535.33546959951,0.1601255948373236,"CurrentSlice","Yes",1316.789999961853,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",6,3,"D - 6",1,1,,,,1333,0,39,25,78.25407983999999,0.8063537467234893,0.7807926076245247,1.1394745946507479,0.5939537449873282,3.76717585672022,0.472814208908291,12.887767260468355,34.921719724218946,24521.776298268975,1918929.0402633597,0.1286743730370112,2533.7767642514914,5690.069400870439,,,1.0509161229075703,3155.3241909336016,30802,435.96138695073233,449.5507941411451,5.940261170196533,4.638112009048462,-13.338618546061461,23.24153404642698,2,11.134084716121723,1,29.742868386826988,2,29.742868386826988,2,-1.0150999572069477,0.957226810024697,1.4521250848846015,6.560942381666445,86.49893951416016,586.7335205078125,0.0018819911638274789,942,0.22947959234021179,2567.537949400799,200920.31968463998,0.3449117690108827,1024.6991681448858,2443.142600474327,,,1.0509161229075703,885.5740561304038,5378,0.4238014429771817,0.3364469831045662,1.7358125251550973,6.4236106467351615,162.12164306640625,10.709321022033691,0.1806415617465973,633,0.22947959234021179,0.09315926173494549,-0.4551279061416551,1.4166641548507892,6.5782524980364085,99.49341583251953,294.5101013183594,0.003953910898417234,1139,1312,0,65,32,138.37738751999998,2269.5685240963853,15641,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1.1982981599999998,2.3965963199999996,6.726565088638325,0.8148466554675937,2.280368946719828,0.16708165204287867,0.4739081714659434,5693.454545454546,13644.912211723637,0.29484877304154344,2.8753588024958354,,5.4767265301186905,0.9874408547757785,5693.454545454546,13644.912211723637,6.955134078363832,2.125318081706772,1,-0.11571034592635702,7907.477272727273,18951.030932301815,0.04508248119747372,0.7649474733980006,,1.7681271609848652,0.9960479245239536,7907.477272727273,18951.030932301815,-0.11571034592635702,"CurrentSlice","Yes",1331.6669998168945,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",6,4,"D - 6",1,1,,,,632,21,7,10,4.89739248,0.9659006882058296,0.8561071009388741,1.1781691312552915,0.48495234789925823,0.9582886334928188,62.870692241553904,3.1792112984197822,7.982173241406316,13910.851063829787,68126.89739039999,0.059976306198092987,125.96211006663559,5516.1592041472795,10944.08808805124,514372.1401384083,3.4932334209038434,834.3214628803229,15964,204.97799999999998,444.59862127659574,1.4558088335037231,1.2463282799720763,63.14740380206897,8.538173160632038,1,8.538173160632038,1,39.60521307264519,2,8.538173160632038,1,0.11119332365377954,0.06254763723405965,21.27659574468085,3.8501476017100584,14.680000305175781,199.77999877929688,0.005103964824229479,50,0.3503996592584541,9200.404255319148,45057.99061295999,0.18025897263683294,156.70619654079204,2633.778836611103,8601.02709268939,404248.2733564013,3.4932334209038434,1658.4554189073758,13459,0.537405252245038,0.24933726954980395,22.181982797645993,3.82065197700538,15.02439022064209,94.20731353759766,0.012114777229726315,82,0.3503996592584541,0.5084605167116301,-0.24020850223229173,21.27659574468085,3.8501476017100584,4.730337142944336,1562.07861328125,0.000701063429005444,89,315,0,346,279,2379.29914656,2772.6827099938687,48281,5,0.562679136,2.8133956799999997,7.070096739862478,0.49117621776348014,2.0733459681374735,0.03380810371393739,0.3243544525024214,10036.452380952382,28236.511771097143,0.07788683255026121,0.6250948670008343,3.827691592567516,3.6456629365768856,0.9996234354061626,7414.388367111551,20859.60820187389,105.92570993898006,8.16495309933081,3.2,3823.5380952380956,10757.125559458285,0.05800607331621207,0.5924484483046263,1.288791226820104,1.3233142934303321,1.0001455585320453,856.7751194595489,2410.4474198189787,-0.06846702062406931,-0.06846702062406931,125,2.03314727808,254.14340975999997,1.9845527901061517,0.6925929145771194,1.5616052281372517,0.4561621033582427,0.6604208931775024,6876.024789416436,1747496.3855765788,0.28357242483021095,3.2917305997512174,11.471949914220932,6.7143143838763955,0.9347656286834285,6276.647626786678,1595168.629733578,54.68931767090577,3.1214800562456215,4.048,0.137151694186611,6546.343488318774,1663710.0555815056,0.0642905116817791,1.0898082000314169,2.2065610032769345,1.6070372924067795,0.9981086397540182,3579.580512540227,909726.7969674217,0.137151694186611,"CurrentSlice","Yes",1346.5999999046326,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",7,1,"D - 7",1,1,,,,768,0,31,18,41.88833568,0.7678178752288872,0.6300774133698733,1.1827052238516105,0.5668597765487979,2.8079855333639046,0.5073506620152265,9.705496141877548,26.18317903454877,33261.298507462685,1393260.4370332798,0.1693495005685044,1450.001503562767,5614.414453148302,,,1.3759031389734757,5632.7842904987465,39758,252.59260597014924,450.6577074626865,4.750747652435303,2.9933387924194332,-1.1227420618762984,40.5216390651975,4,51.47941572761643,2,51.47941572761643,2,51.47941572761643,2,-1.1075860638116157,0.059702978205288915,2.611321501943021,5.961967154262806,37.76396560668945,1031.1982421875,0.001141622313298285,555,0.22275748286510386,3196.4776119402986,133895.12720256,0.15163585409655642,570.7679422762161,2323.185056707629,,,1.3759031389734757,484.7006127870882,6574,1.2661714660709578,9.567809638496286,3.304373654117472,5.7864829144277365,100.47014617919922,13.548507690429688,0.08979471027851105,268,0.22275748286510386,0.6974135051984852,1.1488563756259893,2.759832677408975,5.920585233035346,77.14210510253906,219.32630920410156,0.00473756343126297,380,751,0,49,23,74.29448591999999,2784.215988779804,6574,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0.20839967999999998,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,4905.5,1022.3046302399999,0.0768296635149179,1.55759145106369,,4.9765027393634655,1,4905.5,1022.3046302399999,4.223712483953692,,,-1,7368,1535.4888422399997,0.003838799029242929,0.2886891184032693,,1.610217886282288,1,7368,1535.4888422399997,-1,"CurrentSlice","Yes",1481.1299998760223,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",7,2,"D - 7",1,1,,,,1305,0,46,11,38.032941599999994,0.4582908698832934,0.2619449437452831,2.3643150794796717,0.10783870272963414,3.7830552743780355,3.477128007837807,14.529586223977612,32.293438344878595,31047.797260273972,1180839.06000864,0.32378395066826865,2847.418602606374,5263.024726725537,,,2.3230185598039705,10052.778456478954,51656,427.8815704109589,451.60692821917803,7.320211960601806,1.9174925102233886,-3.0847053132946263,32.5148061678914,3,26.90497481176744,2,26.90497481176744,2,26.90497481176744,2,0.26868345340239236,-1.0386757350649616,2.754738224807656,5.896099286839697,19.161136627197266,1018.2037963867188,0.0014961976557970047,633,0.7179235981446411,5373.753424657534,204379.65017279997,0.284920495838867,1369.4192068526781,2313.2632332954763,,,2.3230185598039705,1531.0924902692345,8873,0.41687310988114834,-0.8057924198549746,2.9649089885531996,5.8429263524405775,45.75862121582031,34.64751052856445,0.040911708027124405,261,0.7179235981446411,0.6718998054405947,-1.0778585139100916,2.9348845937324075,5.850522485926167,23.014925003051758,177.3656768798828,0.00879213772714138,268,1300,0,98,96,448.0593119999999,1766.8658139534884,13705,1,0.20839967999999998,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,6812,1419.6186201599999,0.03986039400699269,1.363135102324469,,2.7419714872110714,1,6812,1419.6186201599999,17.28000825600705,,,3598.5,749.9262484799999,0.03281557105965081,1.1052189719368275,,1.1940772485144981,1,3598.5,749.9262484799999,1,1,10,0.5209991999999999,5.209992,3.8121267907602623,0.6793196700183946,1.1831598508908923,0.49603811051944213,0.28347998338299324,7385.0438888888875,38476.01958075999,0.24514798390214265,5.587850332983322,,8.94041338523263,0.9508363717395432,7385.0438888888875,38476.01958075999,11.601184770238351,7.223969286693723,3.4,0.25121197682662316,3614.9315873015876,18833.76465038857,0.061019762126654165,0.7791261786591305,,0.9390575853830786,0.9982407184496311,3614.9315873015876,18833.76465038857,0.25121197682662316,"CurrentSlice","Yes",1495.952999830246,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",7,3,"D - 7",1,1,,,,179,1,3,1,0.31259951999999996,2.356194490192345,0,1.3962635032204505,0,0.26356509632370967,20.7536742567673,0.6456,1.2912,10220,3194.7670943999997,0.002755406622373527,3.6621888510798994,4581.9036504818105,,,3.155370287809891,28.160255680657446,10252,58.104,452.56559999999996,0.5268727370738983,0,0,28.787544239187884,4,21.280331403434484,1,27.164210477795002,3,22.56320056249461,2,0.6081196905284169,-1.4999999999999993,333.3333333333333,1.0986122886681098,2.5999999046325684,108.4000015258789,0.009305785410106182,5,0.06533352404120837,6478.666666666667,2025.2280902399998,0.030370382162566385,5.020256429106472,2053.2191393497087,,,3.155370287809891,196.75958257054677,6687,0.23556824577481297,-1.5000000000000013,333.3333333333333,1.0986122886681098,4,49,0.020408162847161293,4,0.06533352404120837,-0.6540855787978401,-1.5,333.3333333333333,1.0986122886681098,2.5999999046325684,1063,0.000941589183639735,5,141,0,47,13,27.40455792,3901.254752851711,6687,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1510.7569999694824,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",7,4,"D - 7",1,1,,,,252,0,58,17,70.12649232,0.4815227065695416,0.3635289194893034,2.0725837018025204,0.15555282183705854,4.809580202466644,11.669752713295503,18.501256022227246,42.77968717248281,28561.82763744428,2002940.7864623999,0.17524806949187213,4090.527754444086,4904.991216798124,25763.47221575753,17338816.80120482,1.3396635468044953,5005.405154621709,40325,92.29250104011886,450.87821456166415,9.04040223083496,3.286447654724121,6.201089553090966,27.04496737392471,3,22.972654416274274,1,23.570783046890416,2,22.972654416274274,1,-0.6375383597895372,0.4044067962026636,1.5432882416449376,6.484966983887582,52.632083892822266,793.3101806640625,0.0015097185969352722,935,-0.16851734214724817,2864.884101040119,200904.27290927997,0.21705054529066867,910.4122174344644,2138.510156429753,2330.667233570239,1568539.048192771,1.3396635468044953,621.8246563253249,5634,0.7784516946542324,2.0056747578225806,2.046678397717965,6.276736439941573,115.99212646484375,12.509186744689941,0.11527413129806519,381,-0.16851734214724817,2.541530642979312,10.893301908098252,2.0290155852241742,6.280454139967859,101.50282287597656,46.5819206237793,0.02392108365893364,354,224,0,446,182,1580.7115727999999,2150.9393539881344,29467,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,47,2.4276345702127657,114.09882479999999,2.2240636922603576,0.6536108364240434,1.6287421384347185,0.4371204498709219,0.716489441281707,6017.962444393354,686642.442595817,0.2600526332312491,3.7566840930927534,11.265017656397124,7.9584444244499615,0.9517844114967485,5483.745576923475,625688.9258291664,55.46264768504273,4.194704793115601,3.276595744680851,0.0671481388545756,5680.885800797294,648182.3936939781,0.07432232042644459,1.1779264497400819,2.0300801523535785,1.6315762501977715,1.000326344494801,2882.530379110547,328893.3287068119,0.0671481388545756,"CurrentSlice","Yes",1525.6429998874664,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",8,1,"D - 8",1,1,,,,186,0,66,20,92.42525807999999,0.48500549193156167,0.40251646621204584,1.927571723294567,0.17007755393057533,5.324890726481486,1.5067772768705328,21.228855550876972,48.93582786215298,28684.36302142052,2651159.6551151997,0.19078434047445708,4362.024432555915,5293.669973232995,,,2.101680098192957,5472.527280971619,37611,68.49219165727169,450.3984365276212,9.87951427001953,3.976667171859741,-7.416508666695954,41.69162228601182,5,30.962356290705145,1,41.64354119863779,3,30.962356290705145,1,-0.6414765547830708,-0.5991983975113317,1.196030855308229,6.74564661956974,63.37479019165039,773.0243530273438,0.0015534067060798407,1190,0.4234855008778846,4417.606538895152,408298.42445327993,0.42869533052886494,3193.397945928624,2101.9405106864024,,,2.101680098192957,1893.8072953381322,9988,0.4827045825958632,-0.8265297701470273,1.2850023323237187,6.691918032848387,98.64857482910156,28.149999618530273,0.07833630591630936,700,0.4234855008778846,0.4200148802601103,-1.0558477487948863,1.178236559905131,6.756586935835625,70.89093780517578,859.8944702148438,0.0012982069747522473,1137,183,0,110,35,270.50278463999996,2317.1891371340525,9988,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",2014.3429999351501,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",8,2,"D - 8",1,1,,,,553,0,96,42,222.88345775999997,0.3588645738493017,0.5598616178156739,2.409285736730403,0.22427959594669522,9.24470684441815,2.1295642256730147,31.482517022627018,88.34430455191017,29315.777933613837,6534001.952768159,0.16233325147597621,8457.649288125293,5457.027240050134,24824.737933613837,53100114.44,1.8513370936295948,4758.925551511209,45672,190.16285329593268,448.2806148667601,16.13303282775879,9.032265859222411,-11.908916862632612,27.968683181983792,2,5.534357472476212,1,11.78641623989691,2,5.534357472476212,1,0.8590166927039543,0.6880634489266564,0.5435684184781789,7.561375838313574,197.67721557617188,854.9097900390625,0.0012933635152876377,2782,0.024080068802421063,3942.1122019635345,878631.5984515199,0.4634767043756502,2219.9315600109085,2129.332478416948,2999.312201963535,6415528.800000001,1.8513370936295948,1827.0771716450965,12567,1.3896089257365214,2.0980445360290574,0.6904433590561188,7.379664828999301,363.62591552734375,24.66176414489746,0.08764304220676422,2176,0.024080068802421063,0.877954933174938,0.07505406375065338,0.5431312906788398,7.558392611761409,185.64071655273438,317.9017333984375,0.0040361471474170685,2544,537,0,154,169,1213.82393616,3824.784874238132,23928,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,87,2.1893943393103448,190.47730751999998,1.4725068762025373,0.6649850886971026,1.7284682996984826,0.36572958150779533,0.7392276834840715,7138.641873437454,1359749.2834018946,0.28757816542572606,2.1787362788930364,7.571745729144521,7.203681456604104,0.9580666451968896,6195.841873437454,1180167.2778720385,27.984359892129117,3.4693980644623874,5.195402298850575,0.07712352816840372,8463.28617388271,1612063.963172421,0.07365114878894771,0.7063631718274755,1.8844824748572069,1.7218662966095357,0.9976771489851257,3972.2461738827105,756622.7560078003,0.07712352816840372,"CurrentSlice","Yes",2029.079999923706,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",8,3,"D - 8",1,1,,,,18,1,91,29,224.75905487999998,0.5998767358108126,0.32883990294299803,1.8133484883946078,0.16857920936489945,8.053957136568416,6.2786504196150785,29.196898654480407,68.6171255173614,26106.278627723692,5867622.51080112,0.2047571331192312,14053.805352783482,4367.723181511587,23375.495188233246,50420943.12101911,1.7513454860260071,5345.44676822456,41832,20.29838831710709,447.9435888734353,15.301811499023437,5.031846208190918,-3.6322171236936054,21.184351468103767,4,11.814514621913583,1,13.07314319438634,2,11.814514621913583,1,-0.2622360834476776,0.1844111660742569,0.5143306533546803,7.601835910663573,178.66232299804688,702.7234497070312,0.0017484029522165656,3305,0.3370571611236863,3594.1293463143256,807813.1149940799,0.7899230276371643,3522.3837696600795,2052.2103576889303,3092.8936775245165,6671371.662420382,1.7513454860260071,2839.0855349601943,17466,2.4724432599520343,5.840829526385219,0.7640808494257787,7.302853894965874,419.5982971191406,30.22024154663086,0.12664496898651123,2243,0.3370571611236863,0.5951563102323812,0.6347140000712321,0.568493346478533,7.528543485396451,272.08856201171875,134.05076599121094,0.01001148484647274,2699,0,0,483,63,2235.0865679999997,2341.0336596736597,32228,10,2.8967555519999997,28.967555519999998,1.7570178408577164,0.1693747864156425,3.9144237922020535,0.03600214993286991,1.201097020534884,9675.4061776031,280272.8656282687,0.10558388583625218,1.188513899999678,4.340582034288541,4.036793207582341,1.0153901163448207,7446.348852762335,215702.5238136812,56.45287408968345,12.116546283116257,2,3945.981945602643,114305.45109016217,0.04982056934058421,0.9585365098081382,1.4449999544229508,1.3543837640959995,1.0044180965961127,1215.1985061121973,35201.33019362613,0.3054171055128143,0.3054171055128143,96,2.5377002699999998,243.61922591999996,1.6629036525937313,0.6039760255706006,1.6801229635237425,0.42975993917454686,0.7808625098774518,5333.410871162457,1299321.4279459105,0.3230967269885166,2.899553172865651,10.64052541200734,7.699736810802693,0.9307077557144154,4832.175202372648,1177210.7823118435,56.29289600317091,3.3139121097978186,3.7708333333333335,0.06578950759135196,4665.956316240028,1136716.6659389304,0.08758855424882665,0.9070545604778482,1.708651169025208,1.3894881359884796,1.0010177646394058,1935.1728767495824,471445.3182551128,0.06578950759135196,"CurrentSlice","Yes",2043.909999847412,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +1,"D",8,4,"D - 8",1,1,,,,24,0,12,6,5.52259152,0.9322992635626202,0.5519060522227013,1.2508383087883366,0.41676060555128225,1.0485329998305852,0.4139716505996572,3.5654425363480478,8.627773241406317,2434.0943396226417,13442.50875888,0.033748476352041284,53.62629901621173,4455.735593718342,,,0.23846954208563692,82.14697525939226,2607,9.537826415094338,451.9626339622641,1.8359987291336057,1.013298810482025,5.986545750655638,42.126165095388316,1,42.126165095388316,1,42.126165095388316,1,42.126165095388316,1,-0.004834526610569175,-0.39037625626393213,23.139907440370237,3.813352929274399,18,9,0.1111111119389534,18,0.39818849704596354,469.4339622641509,2592.4920191999995,0.09072715072721543,55.143007915567274,1968.5279644457582,,,0.23846954208563692,42.59040585081358,586,0.7175302732278426,0.15743680679607985,28.835884656461374,3.652952622917925,18,1,1,18,0.39818849704596354,1.9373393571299213,3.144598676638349,19.579921680313277,3.9441354161725015,10.151515007019043,49.272727966308594,0.04639844968914986,66,23,0,13,9,7.710788159999999,464.2567567567568,632,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",2058.676999807358,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",7,4,"D - 7",1,1,,,,606,0,68,33,119.20461695999998,0.44527715298399645,0.9472431945026583,1.9942255924469925,0.15394826650831106,6.150971945919118,3.7210203766310763,23.084150011642187,58.00110455191018,42884.895104895106,5112077.4943488,0.2797833777028109,9518.186757765297,4904.991216798124,39867.85823853566,45608829.824884795,3.031892727801208,11998.480804878294,64049,206.46135629370627,447.9163206293706,8.931180908203125,8.46000033416748,23.417343292735644,49.653444677330654,2,33.939730750209,1,50.68031697078609,3,33.939730750209,1,-0.7409467018534857,-0.4289910826904948,0.9092742921414251,7.015169280254077,57.39433670043945,1902.3048095703125,0.000842427893076092,1978,-0.4521523239666341,6483.733391608392,772890.9554174399,0.5058672141274462,3372.2397813953544,2138.510156429753,5925.5214100415715,6778796.493087558,3.031892727801208,3279.908147958035,20013,1.396179713514496,1.3460062803644748,1.022360506626241,6.931692039944763,176.64761352539062,60.994014739990234,0.033823251724243164,1504,-0.4521523239666341,0.18494156370477052,-0.4122112245908278,0.996381241136486,6.9476057434104375,131.50315856933594,105.36720275878906,0.014725899323821068,1427,590,0,225,134,726.3770846399999,2902.6159804906038,26047,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,3.36912816,70.75169136,2.0688159505970587,0.6756270200945089,2.112221558364422,0.35972492177052046,0.9718666740871308,5150.486199198628,364405.60991964076,0.2713459429275851,4.0281957583151184,9.226756804363028,6.811251906931901,0.9521302948574215,4592.274217631808,324911.1680863711,32.59810739106877,4.841416466203777,2.761904761904762,0.14728282297751563,6100.25487359168,431603.3500336943,0.12486849635661085,1.1940261108302128,2.0219358078155154,1.7520209560467697,1.0062518182860531,3083.2180072322326,218142.88884328914,0.14728282297751563,"CurrentSlice","Yes",1525.6429998874664,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",8,1,"D - 8",1,1,,,,522,0,51,11,49.911723359999996,0.4918354552693104,0.22863774993008948,2.367270863619783,0.09931477886699114,4.336459810997531,0.3728128677399823,16.152906839327713,35.71053020694456,35898.3382045929,1791747.9255513598,0.10713585272785697,771.9296579613989,5293.669973232995,,,1.4209764348748353,3845.999075062067,47048,176.64707724425887,451.4233327766179,8.4545859375,1.933037505340576,0.13122123336572936,17.929940452615075,3,12.50847903634421,1,15.190095454365682,2,15.190095454365682,2,-0.5968791048532441,2.4475835581062633,2.1748510510327272,6.14275917024766,46.54115676879883,1263.0946044921875,0.0008477126830257475,571,0.09001666111465302,2986.8079331941544,149076.73129104,0.24033935685629082,360.302975462566,2101.9405106864024,,,1.4209764348748353,717.8474977171503,7083,1.392252000874109,3.122013314598586,2.5845424313875895,6.015743295746912,59.02325439453125,15.418604850769043,0.08010315895080566,172,0.09001666111465302,0.006109509959911298,-0.36457332180144597,2.2445857540718532,6.121407795150366,55.551998138427734,422.57000732421875,0.0025261964183300734,500,522,0,55,22,72.31468896,3291.6383285302595,8254,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0.10419983999999999,0.10419983999999999,12.566370614359172,1,3.1415925460576575,0,0.2282540689670175,8254,860.0654793599999,0,2.4890345631266144,,10.43510953918369,1,8254,860.0654793599999,3.967295030812379,,,0,19967,2080.5582052799996,0,0.6244214367790014,,4.859346504311355,1,19967,2080.5582052799996,0,"CurrentSlice","Yes",2014.3429999351501,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",8,2,"D - 8",1,1,,,,723,0,52,48,178.28592623999998,0.7790950624743002,0.6240362113295139,1.1533877495239688,0.5569872915182239,5.720793146301674,3.472502268855841,20.623863529416596,53.62511503463579,26791.31969608416,4776515.24720832,0.1188710406854015,8780.65025577941,5457.027240050134,22941.11969608416,39252255.8,1.0696711702303094,3184.7120536088187,35490,240.52354365867913,446.21562781998824,9.705985134887694,6.056886190795898,133.1631431128357,56.9547914847446,6,45.96707745611096,1,61.04989352104357,4,65.9809746702179,3,-0.5304209636752394,0.9561294011786421,0.6855629729043788,7.333097811649128,207.62301635742188,707.6058959960938,0.001523136394098401,2276,0.047938254758193626,2277.685563997662,406079.2804607999,0.2591924562612527,1646.2969487135786,2129.332478416948,1678.485563997662,2871888.8,1.0696711702303094,590.3589159233507,6543,0.7706450681468524,3.313741222853978,1.1938428451922292,6.873882115589026,619.99267578125,7.819122791290283,0.1840507686138153,1642,0.047938254758193626,0.7796880545823258,0.18673934251149227,0.7026422696882448,7.314065452529936,232.417236328125,239.81988525390625,0.004741276148706675,2193,669,0,212,199,2536.5367051199996,2360.91159676293,42902,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,145,1.6370154173793101,237.36723551999998,1.919220220907581,0.6666552061560529,1.5190017538662723,0.4310835858880616,0.592632520793647,6888.489991508284,1635101.8261915096,0.2938670404202753,3.585252671506606,11.496144845641329,6.951250461306107,0.941883947865553,6289.289991508284,1492871.3786679257,27.102100029020672,3.386300127462961,4.110344827586207,0.039630185768874726,5819.310796208738,1381313.716327758,0.0599311140857146,0.8831982615010335,1.511430781831785,1.1839461556208855,0.9958372354761501,1969.110796208738,467402.3861286542,0.039630185768874726,"CurrentSlice","Yes",2029.079999923706,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",8,3,"D - 8",1,1,,,,806,12,51,71,172.45073519999997,0.5678269574062309,0.556158872793961,1.8578429242598877,0.16142513842666395,7.140803568019583,2.6498736781195733,26.144807331475974,61.77737544852491,26653.30996978852,4596382.899803519,0.18884510759023548,12850.442991568796,4367.723181511587,24002.094185927872,39723465.877710626,3.5118703351898763,5033.347188880609,37761,268.5781819939577,437.4825505740181,12.480174467468261,6.94095976409912,122.2424087990295,88.26682746312737,3,77.15053367773022,1,97.20334660687494,3,104.43153151793592,2,-0.3450466385874323,-0.5765317083418209,0.661184180502186,7.347784794448453,140.9525146484375,716.0119018554688,0.0016461756313219666,2527,0.29672065550030985,7207.09667673716,1242869.1205608,0.2640252271585184,6232.551235096359,2052.2103576889303,6692.672574355362,11076373.110558124,3.5118703351898763,1902.8553372289316,20354,1.8736519052219631,6.861330664826109,0.8035706136307628,7.201328516064799,434.88623046875,62.56930923461914,0.02037547528743744,2496,0.29672065550030985,1.0703793602444842,1.8723749100276086,1.003641806847327,7.022165965041501,392.2928161621094,21.3780574798584,0.0569443479180336,1349,380,0,714,139,6245.634209759999,2059.937953586146,34333,8,18.143797139999997,145.15037711999997,3.387524051549657,0.5750889101225429,6.226013470978795,0.047747145397586704,3.4068773710673654,12645.51788109426,1835501.689318535,0.19102125498273415,2.843201548657231,7.16299218344328,5.275989426358984,1.000504862688485,10880.121862608657,1579253.7914692033,68.87193977378683,28.185239598046472,1.5,3522.156043561558,511242.27799844724,0.09885729190638089,1.0513035317557287,1.3285059877067664,1.2089135291985815,0.999613388145698,870.9402597009107,126417.3071445779,0.2978385319378567,0.2978385319378567,123,2.20344539707317,271.02378383999996,1.8553443222647137,0.6031629337545309,1.654593990995972,0.37862781288990516,0.7176556869993553,7538.102816569461,2043005.1483216162,0.24064762336456785,3.7454884017429015,14.653479068472535,10.882605736262127,0.9463483079463454,7023.678714187662,1903583.9815956058,43.46244619670722,3.93987559078727,3.821138211382114,0.06877861662665723,4651.48215654208,1260662.2945302776,0.08738154403338586,1.050990427101388,1.7544713579551359,1.3851778356308224,1.003958423337736,2000.2663726814326,542119.7610120333,0.06877861662665723,"CurrentSlice","Yes",2043.909999847412,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +2,"D",8,4,"D - 8",1,1,,,,1067,0,30,9,20.214768959999997,0.5531903576349756,0.32710221544732454,1.9365375907299778,0.1676600975556528,2.496073732397093,9.494587051969635,9.383435660780117,21.429005793142455,36825.35567010309,744416.0567409599,0.1289365737131541,1538.6290825491903,4455.735593718342,,,1.4806029175426485,4748.135185871364,42642,349.49922061855665,451.8867216494845,4.746278035354614,1.5525180604934692,3.572154026501391,8.086043225883458,2,8.086043225883458,2,8.086043225883458,2,8.086043225883458,2,-1.2616441688614866,0.8145955899713626,5.314061005420342,5.2464206173965255,21.143369674682617,1280.326171875,0.0008556031389161944,279,0.14151398646103558,2914.6082474226805,58918.132330559994,0.1729463433787355,359.2224850825041,1968.5279644457582,,,1.4806029175426485,504.0708387732574,4940,1.504262151111031,1.956527691137981,6.111170156233394,5.143681600904552,27.69841194152832,12.968254089355469,0.08736331760883331,63,0.14151398646103558,0.47032872918759144,-1.1781697047278903,5.314061005420342,5.2464206173965255,25.928571701049805,218.47959899902344,0.005018969066441059,196,1034,0,156,139,1050.1259875199999,1599.8551299861083,11454,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45,1.745926208,78.56667936,2.8033041873669697,0.5960415571611056,1.8226405705523032,0.3368581242950785,0.6504942469736619,3810.783206707776,299400.5823118824,0.2650713145709817,2.1222699018910043,,5.61388008996014,0.9664688440420186,3810.783206707776,299400.5823118824,26.14592629875637,3.2187978099132617,3.3333333333333335,-0.009317667122067922,5424.919951338302,426217.9463704631,0.060267471018590826,0.858040907531491,,1.6459253807120806,0.9978582780740496,5424.919951338302,426217.9463704631,-0.009317667122067922,"CurrentSlice","Yes",2058.676999807358,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",7,4,"D - 7",1,1,,,,899,0,73,21,99.09404783999999,0.4345187817706343,0.42244196591242217,2.3590039842723773,0.11135353237385115,6.099555792291346,2.39682232808951,23.74061782178383,53.53335227595509,35576.41009463723,3525410.4838934396,0.21802483280362697,7746.819074457666,4904.991216798124,32655.202777564056,31055097.841463417,1.8854744233375087,7756.540862636548,50278,304.0487482649842,450.3348517350158,11.236412315368652,4.746732108306884,9.581398114733966,51.33705228643299,6,37.10342023667958,1,46.840917439267066,4,42.171697387664295,2,-0.5731322418983922,-0.3369467519105096,1.091330062660258,6.831275052555739,57.667945861816406,1244.85986328125,0.0010429013054817915,1563,0.10609019811962347,4032.1062039957937,399557.7250747199,0.32845953185893845,1785.51169569025,2138.510156429753,3410.057423507989,3242964.6097560977,1.8854744233375087,1324.3837161699798,12283,2.1251369899210446,9.205771757856564,1.3832359760769837,6.658776673703696,157.89100646972656,24.19073486328125,0.07246749103069305,734,0.10609019811962347,1.2311198322394203,0.6087377072302869,1.1819978084942409,6.775138476386976,73.69291687011719,151.0246124267578,0.01277157198637724,1016,833,0,270,78,1090.0345262399999,2318.9024949813593,35551,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,3.42556974,82.21367375999999,2.340791674831332,0.6843586132252044,2.2562288466681983,0.39903797476709696,1.0281737673657947,6421.739283396084,527954.7784169017,0.2694629147430007,3.484610520166346,10.323530058784483,8.492418433556168,0.9392623141081072,5799.690502908279,476813.86291507154,27.40592698534803,4.249775230347613,2.4166666666666665,0.12872767810557353,5858.084028633043,481614.60918870347,0.11738453827513845,0.9922067923652965,2.005364013158231,1.6824683874896997,1.0029652452478177,2936.8767115598725,241451.42383752496,0.12872767810557353,"CurrentSlice","Yes",1525.6429998874664,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",8,1,"D - 8",1,1,,,,568,0,78,43,233.82444095999998,0.6774364412555453,0.8738677101435186,1.3411584912167804,0.36223579715677034,7.0647220277602925,0.06828390249856539,27.170864292473286,65.85907200017404,35470.10784313725,8293778.1372124795,0.1057119831036489,3855.6250940428663,5293.669973232995,,,1.5711765347558184,3749.6154409983296,50221,193.9871203208556,447.09655668449193,10.639584983825683,9.297589766693115,-19.467469871783997,21.484122948517623,5,17.091691764926086,2,17.351698467413108,3,17.351698467413108,3,-0.10930725384387369,1.3645955377501044,0.5246710578575945,7.595769609627716,255.06085205078125,1242.799072265625,0.000848640687763691,3155,-0.05878269910195416,3302.5196078431372,772209.80106336,0.3947530881017404,1714.144178586049,2101.9405106864024,,,1.5711765347558184,1303.6798137126273,12175,1.685128252349251,4.074390530999961,0.7792616317309616,7.295102731495741,504.5213928222656,18.021604537963867,0.10199368745088577,2407,-0.05878269910195416,1.3757603581644993,2.7885857720711433,0.5250682350399242,7.597925794668064,218.5054931640625,409.96240234375,0.002978821750730276,3005,563,0,89,53,270.50278463999996,3440.9379815100156,12175,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",2014.3429999351501,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",8,2,"D - 8",1,1,,,,997,0,24,32,65.54169936,0.8085947819106787,0.7015868086119369,1.1061838537210957,0.6551848964299811,3.3968985936041305,8.636015731687817,10.97994603265426,31.915254620746666,29974.224165341813,1964561.5887940798,0.15634304962610565,3570.5428886620452,5457.027240050134,,,1.5116682010746223,4686.261616186051,39244,325.754466772655,448.4005049284578,5.560715904235839,3.9013249248504636,87.57551709280807,35.47693048814418,2,17.302096491895767,1,51.28050972166788,2,51.28050972166788,2,-0.6694611597700628,-0.24911942980656843,1.6454310852515284,6.419887635122827,54.06836700439453,874.653564453125,0.0012989779934287071,863,0.08958283543022551,3218.844197138315,210968.51865551996,0.3333630011119377,799.3975205384037,2129.332478416948,,,1.5116682010746223,1073.0435616697741,7141,0.4075603721445861,0.16233681818074475,1.8577447736710806,6.331437357674545,124.1584701538086,14.710382461547852,0.1136033684015274,549,0.08958283543022551,1.860310253230525,2.9371849424269296,1.9133507396857252,6.3099379212077595,101.5728988647461,62.39622497558594,0.022460972890257835,583,848,0,183,186,2299.1694696,2552.2826648538407,23912,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,144,1.7511362,252.16361279999998,2.4955342688255,0.6509457445839681,1.6808578311470053,0.37309126893537486,0.6214101797616463,6512.53658639941,1642224.7541186544,0.25425573881344976,3.3201934171489462,,6.571871775423681,0.9525646420138751,6512.53658639941,1642224.7541186544,32.642753213740484,3.413103851747491,4.013888888888889,0.047510546378357166,5292.387120377322,1334547.4566105339,0.052500634464304446,0.9171252441619058,,1.076742866064214,0.9986563145994088,5292.387120377322,1334547.4566105339,0.047510546378357166,"CurrentSlice","Yes",2029.079999923706,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",8,3,"D - 8",1,1,,,,1297,14,1,1,0.10419983999999999,12.566370614359172,1,3.1415925460576575,,0.2282540689670175,39.71108355418635,0.3228,0.3228,6476,674.7981638399999,0,2.107166104129559,4367.723181511587,3921.2199349945827,3921.2199349945827,3.2584378959720666,0,6476,418.67159999999996,448.3692,0.3228,0.3228,90,65.70489871589484,3,55.41186409641536,1,55.53224652741942,2,55.53224652741942,2,,,1000,-0,2,49,0.020408162847161293,2,,6687,696.7843300799999,0,4.449316181576822,2052.2103576889303,6174.28602383532,6174.28602383532,3.2584378959720666,0,6687,,,1000,-0,2,49,0.020408162847161293,2,,,,1000,-0,2,4096,0.000244140625,2,1268,0,116,85,660.5227857599999,1503.7453857075247,9401,1,272.27418192,272.27418192,0.3461207993020911,0.8906977924824405,1.2709669166405082,0.8077666020296224,7.421307252751316,14536.58208955224,3957935.9963457594,0.6441911838379789,3.0008416324734557,7.132070810413413,6.064983191755238,0.9773564431051532,12498.38273960641,3402986.935749383,7.159054420227246,,,3292.8040566398777,896545.5307444799,0.1776144380321284,1.1411620150460828,1.2888796580745574,1.1301927920963641,0.9790258288347058,738.0239916344603,200944.87855960557,0.7778908482904234,0.7778908482904234,1,1.0419983999999998,1.0419983999999998,1.347530211131618,0.7399603172902164,1.118406986643754,0.53387711225378,0.4306689160283042,7930.2,8263.25571168,0.08385069274025837,6.677530499299908,15.467103236235696,11.448668466024058,0.9969543252916399,7417.486023835319,7729.008568858764,0.3565442536347755,,,-0.045295997509160885,5993.7,6245.425810079999,0.05295896919966224,2.0659641596967675,2.346072791979176,1.7848806281549696,0.9925284842286394,3438.9199349945825,3583.3490699924587,-0.045295997509160885,"CurrentSlice","Yes",2043.909999847412,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" +3,"D",8,4,"D - 8",1,1,,,,1100,0,20,11,16.98457392,0.8259550279427208,0.5497069254523729,1.2757946105706914,0.4401811905235724,1.8570679437090258,1.6264501690762427,6.267642274412284,16.07511393107649,30713.68098159509,521658.78498719994,0.13983437022724832,372.7874783005938,4455.735593718342,,,2.517875941807868,4294.828237421963,40166,358.3179018404908,451.62294478527605,3.25671865196228,1.7902407972335814,4.2464852967595235,11.22777437007092,4,8.822625274156502,1,9.5807699939653,3,9.022807396232677,2,0.03283447895238705,-0.4816114068750341,6.134969325153374,5.093750200806762,15.824000358581543,942.0960083007812,0.0011598875280469656,250,0.11426356182556405,4956.509202453988,84184.19693424,0.18196122883603796,212.95867673705757,1968.5279644457582,,,2.517875941807868,901.8925052156582,6927,0.29309750307162613,-0.8375957598024266,6.5866235086002485,5.042720960520141,30.66371726989746,30.690265655517578,0.037252675741910934,113,0.11426356182556405,-0.18112704570542046,-0.7654787225234436,6.134969325153374,5.093750200806762,22.647619247436523,332.4761962890625,0.003313464345410466,210,1085,0,37,22,50.95372175999999,4181.333333333333,8942,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,1.07673168,3.2301950399999995,1.5870911375550165,0.7717642571474722,1.0311268718118585,0.6517219661793999,0.4166403747579337,6319.519480519481,20413.2804811574,0.16509884680271703,1.69108499616795,,9.309641264125592,0.9563517387432516,6319.519480519481,20413.2804811574,4.256311274617161,3.165256985548223,2,0.3542169454836756,14330.728937728936,46291.049534236474,0.0908023376247901,0.8011310674664841,,4.347955489535703,0.9956867475015826,14330.728937728936,46291.049534236474,0.3542169454836756,"CurrentSlice","Yes",2058.676999807358,"2023-06-06 DAY5 iSMR IMR90 Phall Mito Dapi" diff --git a/tests/data/in-carta/colas-lab/test-in-carta-2.csv b/tests/data/in-carta/colas-lab/test-in-carta-2.csv new file mode 100644 index 00000000..17cae15c --- /dev/null +++ b/tests/data/in-carta/colas-lab/test-in-carta-2.csv @@ -0,0 +1,145 @@ +"OBJECT ID","Row","Column","FOV","WELL LABEL","Z","T","Class Name","Class Color","Ancestry Path","Primary Target Max left border wv1","Primary Target Max top border wv1","Primary Target Max width wv1","Primary Target Max height wv1","Primary Target Area wv1","Primary Target Form Factor wv1","Primary Target Elongation wv1","Primary Target Compactness wv1","Primary Target Chord Ratio wv1","Primary Target Gyration Radius wv1","Primary Target Displacement wv1","Primary Target Diameter wv1","Primary Target Perimeter wv1","Primary Target Intensity wv1","Primary Target Total Intensity wv1","Primary Target Intensity CV wv1","Primary Target Light Flux wv1","Primary Target Global Bckg Intensity wv1","Primary Target Intensity-Bckg wv1","Primary Target Total Intensity-Bckg wv1","Primary Target Intensity/Global Bckg wv1","Primary Target Intensity SD wv1","Primary Target Max Intensity wv1","Primary Target cg X wv1","Primary Target cg Y wv1","Primary Target Major Axis wv1","Primary Target Minor Axis wv1","Primary Target Major Axis Angle wv1","Primary Target Spacing (SOI) wv1","Primary Target Neighbor Count (SOI) wv1","Primary Target Spacing (MIN) wv1","Primary Target Neighbor Count (MIN) wv1","Primary Target Spacing (Gabriel) wv1","Primary Target Neighbor Count (Gabriel) wv1","Primary Target Spacing (Lune) wv1","Primary Target Neighbor Count (Lune) wv1","Primary Target Skewness wv1","Primary Target Kurtosis wv1","Primary Target Energy wv1","Primary Target Entropy wv1","Primary Target Grey Level Non uniformity wv1","Primary Target High Grey Level Run Emphasis wv1","Primary Target Low Grey Level Run Emphasis wv1","Primary Target Run Length Non uniformity wv1","Primary Target Pearson correlation wv1","Primary Target Intensity wv3","Primary Target Total Intensity wv3","Primary Target Intensity CV wv3","Primary Target Light Flux wv3","Primary Target Global Bckg Intensity wv3","Primary Target Intensity-Bckg wv3","Primary Target Total Intensity-Bckg wv3","Primary Target Intensity/Global Bckg wv3","Primary Target Intensity SD wv3","Primary Target Max Intensity wv3","Primary Target Skewness wv3","Primary Target Kurtosis wv3","Primary Target Energy wv3","Primary Target Entropy wv3","Primary Target Grey Level Non uniformity wv3","Primary Target High Grey Level Run Emphasis wv3","Primary Target Low Grey Level Run Emphasis wv3","Primary Target Run Length Non uniformity wv3","Primary Target Pearson correlation wv3","Primary Target Skewness wv2","Primary Target Kurtosis wv2","Primary Target Energy wv2","Primary Target Entropy wv2","Primary Target Grey Level Non uniformity wv2","Primary Target High Grey Level Run Emphasis wv2","Primary Target Low Grey Level Run Emphasis wv2","Primary Target Run Length Non uniformity wv2","Cells Max left border wv3","Cells Max top border wv3","Cells Max width wv3","Cells Max height wv3","Cells Area wv3","Cells Intensity (Cell) wv3","Cells Max Intensity wv3","F Actin Org per Cell wv2","F Actin Area wv2","F Actin Total Area wv2","F Actin Form Factor wv2","F Actin Elongation wv2","F Actin Compactness wv2","F Actin Chord Ratio wv2","F Actin Gyration Radius wv2","F Actin Intensity wv2","F Actin Total Intensity wv2","F Actin Intensity CV wv2","F Actin Organelle/Cyto Intensity wv2","F Actin Organelle/Bckg Intensity wv2","F Actin Intensity/Global Bckg wv2","F Actin Intensity Spreading wv2","F Actin Intensity-Bckg wv2","F Actin Total Intensity-Bckg wv2","F Actin Distance to Nuc wv2","F Actin Spacing wv2","F Actin Neighbor Count wv2","F Actin Intensity wv1","F Actin Total Intensity wv1","F Actin Intensity CV wv1","F Actin Organelle/Cyto Intensity wv1","F Actin Organelle/Bckg Intensity wv1","F Actin Intensity/Global Bckg wv1","F Actin Intensity Spreading wv1","F Actin Intensity-Bckg wv1","F Actin Total Intensity-Bckg wv1","F Actin Pearson correlation wv1","F Actin Pearson correlation wv3","Mitochondria Org per Cell wv3","Mitochondria Area wv3","Mitochondria Total Area wv3","Mitochondria Form Factor wv3","Mitochondria Elongation wv3","Mitochondria Compactness wv3","Mitochondria Chord Ratio wv3","Mitochondria Gyration Radius wv3","Mitochondria Intensity wv3","Mitochondria Total Intensity wv3","Mitochondria Intensity CV wv3","Mitochondria Organelle/Cyto Intensity wv3","Mitochondria Organelle/Bckg Intensity wv3","Mitochondria Intensity/Global Bckg wv3","Mitochondria Intensity Spreading wv3","Mitochondria Intensity-Bckg wv3","Mitochondria Total Intensity-Bckg wv3","Mitochondria Distance to Nuc wv3","Mitochondria Spacing wv3","Mitochondria Neighbor Count wv3","Mitochondria Pearson correlation wv3","Mitochondria Intensity wv1","Mitochondria Total Intensity wv1","Mitochondria Intensity CV wv1","Mitochondria Organelle/Cyto Intensity wv1","Mitochondria Organelle/Bckg Intensity wv1","Mitochondria Intensity/Global Bckg wv1","Mitochondria Intensity Spreading wv1","Mitochondria Intensity-Bckg wv1","Mitochondria Total Intensity-Bckg wv1","Mitochondria Pearson correlation wv1","Slice Algorithm","Slice Indicator","Acquisition Time Stamp","Plate ID" +1,"C",3,1,"C - 3",1,1,,,,1166,0,18,46,68.56349472,0.6177040015060917,0.38245176239534834,1.6294865511108738,0.21808009194649836,4.216789664999765,9.246708120055821,14.953690402037886,37.34747089661473,25592.79483282675,1754731.4533905599,0.3100477378666431,5932.262116289598,2507.323668113317,23482.647866711697,15451582.296296297,3.9376775894504314,7934.988143603045,39452,378.9779927051672,446.0242395136778,7.876279241180419,3.0122968769073486,94.4541141239047,64.64132891825243,2,55.36841617677191,1,64.64132891825243,2,55.36841617677191,1,-0.23150731295492455,-0.9672340865178022,1.5613307341949907,6.47024345830088,36.069000244140625,708.4747924804688,0.0022399192675948143,971,0.08893562466683608,9431.100303951367,646629.19589376,0.21556691130497888,1394.510189328533,2395.092053554246,8398.31425194191,5526090.777777777,3.9376775894504314,2033.0331627302437,14257,-0.488098912210591,-0.09987453778926048,1.6490978464722241,6.43021368191596,126.15098571777344,97.78556060791016,0.01292361132800579,914,0.08893562466683608,0.5799053863929121,0.8504986787353808,1.5844273426889997,6.461020927011757,56.96976852416992,217.70465087890625,0.007702877279371023,860,1119,0,99,272,1556.4330100799998,4669.490058244627,18002,1,0.31259951999999996,0.31259951999999996,3.2340725067158833,0.8625100529212949,0.9308423232128326,0.5000000002401066,0.21519999995087347,9451.666666666666,2954.5864632,0.07176008582884054,0.9448832017061548,2.8421693553241005,3.106416844566912,0.9793070008415924,6126.1552403467285,1915.0331875778718,64.5969858626177,,,2188.3333333333335,684.0719495999999,0.13880145988972611,1.0520833333333335,1.0370525695479067,1.0498839196603573,0.9816450877433347,78.18636721828216,24.441020862978736,-0.02341030618119013,-0.02341030618119013,78,2.046591729230769,159.63415487999998,2.7689430184056882,0.6235474074321185,1.6544843165760479,0.33472550096061615,0.6522801135498429,8378.241681115522,1337453.5301452666,0.15495030686514888,2.059482049984555,8.112272299586412,7.69822985988126,0.9843694923884231,7345.455629106065,1172585.6015608853,49.38098848683703,2.9889723676707196,3.9743589743589745,0.12151277486398673,2783.5030465926216,444342.15644871834,0.08666845044273878,0.8694529606129817,1.3191038782086693,1.30913766781044,0.9998643379059765,673.3560804775702,107490.62884034618,0.12151277486398673,"CurrentSlice","Yes",0,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",3,2,"C - 3",1,1,,,,739,0,78,24,135.56399183999997,0.5041275911205614,0.3867381534192333,1.8296910970642202,0.19844437992752273,6.283058878277741,3.105206361031243,25.024808458807428,58.13087668975719,41532.15987701768,5630265.3826656,0.1926711042439221,17033.102959228345,3020.9682978681567,38959.9774161131,50686930.61836314,2.8905389568727555,8002.047105140111,53565,248.6187735588009,449.8658407378939,11.720185025024414,4.532642714309692,-5.660119944084514,40.997006048220996,2,27.415904832211833,1,57.81142100932192,2,57.81142100932192,2,-0.9016116041044397,-0.037122036423133054,0.806451136446215,7.136790538807788,77.03987121582031,1639.2235107421875,0.0007513962336815894,1906,0.5826356348224885,9054.129900076863,1227413.9918923196,0.18012213805602428,3763.9007270118004,3132.3327708658294,7767.3559043843825,10105330.031604081,2.8905389568727555,1630.849235838822,13351,-0.406039702236119,-0.49026643278073756,0.9411550625339344,7.021286971389287,202.98733520507812,80.26445007324219,0.014649630524218082,1263,0.5826356348224885,0.8907872016562091,0.8829599868857527,0.9399734491472,7.026996131944712,164.10899353027344,126.89619445800781,0.00900129321962595,1156,528,0,384,104,1716.6923639999998,3597.4293171471927,22826,1,0.10419983999999999,0.10419983999999999,12.566370614359172,1,3.1415925460576575,0,0.2282540689670175,4527,471.71267567999996,0,1.226330759853718,1.8602090618398133,1.6255232364659435,1,2093.402565783313,218.13221241021068,50.79174654632385,,,2977,310.20292367999997,0,1.1669361556176197,1.1573829015819725,1.2269332879713901,1,404.8175390954211,42.18192280293662,0,0,44,1.4540614036363635,63.97870175999999,3.423947536102004,0.6856247506124512,1.5910069238042774,0.4775699886075971,0.5263626845295265,6013.05457410975,384707.4252635715,0.19450365977105014,1.7443466695920171,4.672968675337436,4.239434007757779,0.9746946532441675,4726.28057841727,302381.29556063877,20.966446753266233,3.4214436138856157,4.090909090909091,0.1756469873123884,3404.408021222,217809.60545911407,0.07469988774729672,0.7087525941092272,1.3235484157779174,1.3744882916022128,0.9971003092796984,832.2255603174212,53244.71092059718,0.1756469873123884,"CurrentSlice","Yes",12.726999998092651,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",3,3,"C - 3",1,1,,,,491,0,17,15,17.609772959999997,0.6905608099186179,0.7053617348521194,1.1834595313985352,0.6507603233384296,1.8212251439786282,13.989200464139438,6.267642274412284,17.90114648281263,10325.360946745563,181827.26200224,0.1462960819893444,623.601911166986,3083.2573786182334,7920.52826192066,1338569.2762645916,3.8150896662215947,1510.5598516346636,14015,161.11158106508873,450.7166627218935,2.9766833965301513,2.0996385646820066,130.9807711920425,54.176840693430705,3,42.86201097003211,1,57.56995303855969,3,60.27281889394534,2,0.15519552169533976,-0.6343249925146512,6.127236441301075,5.105289939281892,32.80110549926758,112.98342895507812,0.009635798633098602,181,0.6013913301958154,11858.721893491123,208829.40014015994,0.17199312438137426,693.1424431934213,3108.3730478177245,10669.6557456312,1803171.8210116727,3.8150896662215947,2039.618629631345,18391,0.39927534259988373,0.9016386087567465,6.1972620006302295,5.10219379641938,24.413043975830078,152.69021606445312,0.007593908347189426,184,0.6013913301958154,-0.0961086162769997,-1.3216964663242834,5.9171597633136095,5.1298987149230735,12.471861839294434,819.8441772460938,0.0014498389791697264,231,434,0,304,69,1321.5665707199998,3010.848931640779,18391,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,0.7370606329411764,50.120123039999996,3.1023034745461464,0.655578855681896,1.3630483702264726,0.4380421569571255,0.3610695110868285,4193.017448870573,210154.55044626002,0.20608291917676058,1.480318002937841,3.526311346443723,3.304698835354713,0.9795693436794297,3003.951301010651,150558.4088128219,25.760099013534557,2.590480892886271,3.8529411764705883,-0.09505052542208463,2768.4632721520393,138755.7198319812,0.08173867844804956,0.9303594742105671,1.1512082689252092,1.0858647342485173,0.9940961029649399,363.6305873271367,18225.209777943557,-0.09505052542208463,"CurrentSlice","Yes",25.449999809265137,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",3,4,"C - 3",1,1,,,,127,0,61,34,151.50656736,0.7440071184178576,0.9093973112739473,1.293976880050531,0.3919615821487107,5.585847156914637,6.718982562757364,20.74225492467007,50.58620689670175,19626.22764786795,2973502.3811543994,0.16218515049373347,10017.25006657164,3044.2955395690074,17219.905256713835,25037742.243261915,1.5393503159068977,3183.082684693736,28195,51.60892654745529,448.1605122420907,8.26512946243286,7.516286510467529,20.26024616435994,63.83644744637241,3,42.80476073417376,1,71.68147510672786,3,64.20935154834152,2,-0.4604877334783539,0.5590586263545507,0.7927663382709369,7.179210217242343,174.70623779296875,387.2545166015625,0.002987276529893279,1988,0.18683752793213015,4909.962861072902,743891.6189462399,0.23039301368992365,2411.751979928288,3189.633191571622,3577.2365307342707,5201301.91568763,1.5393503159068977,1131.2211406681859,9747,0.09834339351740286,1.015343706981815,0.9848087805967127,7.017004116054963,343.053955078125,30.568382263183594,0.04458155855536461,1594,0.18683752793213015,0.6559983846047241,-0.6013456244936957,0.7180306094840586,7.2527508746539,80.53900909423828,659.761962890625,0.00373938144184649,2256,103,0,298,134,1238.31089856,3198.685964321777,21077,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32,3.3799823099999995,108.15943391999998,2.1633478743711105,0.705531838952509,1.7874834355209606,0.4157964885516122,0.8759039999460295,5667.8866163796365,613035.4079503656,0.2322652020389644,2.158924682093832,4.252851082291956,3.6813583222162003,0.9716765527137434,4335.160286041005,468888.4824906603,42.15357961718687,3.673822347084368,3.5,0.21671054257105207,2998.4784001532325,324313.72638192086,0.086326986426106,0.9712044316947104,1.2460834056051455,1.1666980410051362,0.9996971776627334,592.1560089991208,64047.25872567132,0.21671054257105207,"CurrentSlice","Yes",38.18400001525879,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",4,1,"C - 4",1,1,,,,359,0,61,37,133.58419487999998,0.6548069218311157,0.7387916537531443,1.5093720281412073,0.26097889516276807,5.664815225960234,0.9911513836455311,21.228855550876972,50.632088276042104,25956.23088923557,3467342.2054579197,0.17582240579874206,7541.130802830037,3102.50806150549,22936.888423482145,29405090.95890411,2.952786308138832,4563.68696041302,39364,126.27497878315131,447.5531354134165,9.112475768280028,6.732221042633056,28.356709618461043,34.1959385352926,2,30.402219090439736,1,76.87118637079914,3,30.402219090439736,1,-0.3762903320863501,0.16919400153007125,0.8372253766905746,7.105353053258591,124.15767669677734,670.1234741210938,0.0017396750627085567,1928,0.18481575048716442,12898.390015600624,1723021.0454822397,0.18968878310585907,2034.4487116351465,4368.209775305615,11517.746179984186,14765750.602739727,2.952786308138832,2446.679906084045,21913,-0.10376726025286087,0.6967405843230527,0.9138899097305545,7.0432866501428695,209.05813598632812,177.21743774414062,0.006752319168299437,1789,0.18481575048716442,0.2873073762692828,-0.4998559212567675,0.8274901978918471,7.114677079082551,70.96680450439453,651.6886596679688,0.0025126528926193714,1988,349,0,102,77,409.9221705599999,9682.473055414337,24447,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,1.0524183839999999,21.04836768,3.18682370665243,0.7254185228128593,1.3110482223164381,0.48320535572090373,0.4097419049311246,11949.958206406167,251527.11408907032,0.1439220384051047,1.3822391122291964,8.655351871448206,7.789240737396093,0.9720987350142758,10569.314370789729,222466.81500189003,12.486830276562346,3.0357752970388963,3.7,0.07302410164264533,4086.8904772347532,86022.37343272773,0.09741123518208371,0.7876351992528259,1.3535697005523155,1.5522019530580815,1.0010780233501604,1067.5480114813286,22470.14306171186,0.07302410164264533,"CurrentSlice","Yes",561.4969999790192,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",4,2,"C - 4",1,1,,,,245,0,40,18,50.536922399999995,0.6131609472560722,0.6100647542800862,1.5489303024927832,0.2915812380962941,3.5296399741245525,8.921829248984247,13.171664040659403,32.18267089661473,18440.383505154638,931920.2302262399,0.1901692100690281,2825.8909643057013,3319.2834403519514,,,2.336918941135355,3506.7931645451927,25529,86.7553286597938,450.7346251546391,6.026253044128418,3.6764045825958247,12.442435641923057,57.19820270313453,2,40.668394964136134,1,54.32244796402595,2,54.32244796402595,2,-0.4664091871865802,-0.34111277969965004,2.146880646189818,6.155565502048414,47.66559982299805,334.4815979003906,0.0036271940916776657,625,0.1415806454412914,10116.903092783505,511277.1465283199,0.2118732792391432,1090.4672438349435,4329.1630337286615,,,2.336918941135355,2143.501434012671,14844,-0.8303247937873471,-0.28173613644776463,2.248910617493889,6.123044912118345,57.5011100769043,103.4567642211914,0.012582523748278618,451,0.1415806454412914,0.6026501857531102,-0.13457476699398674,2.112870655755128,6.1669988576040415,25.534574508666992,1089.7978515625,0.0013535834150388837,752,238,0,200,166,1323.8589671999998,4714.062495080677,27202,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,78,1.7286486276923076,134.83459295999998,2.2999523460947873,0.6017318094092067,1.617180441329763,0.4083350014571912,0.6266334115183749,7699.237429610772,1038123.5449239649,0.20040419936951798,1.3324865526373826,,4.795271674363525,0.9755670159567776,7699.237429610772,1038123.5449239649,35.69825672943632,3.3628080249608274,4.846153846153846,-0.003165136025295704,3253.236503580771,438648.8197629268,0.06574917900458274,0.7722235356835575,,1.1598319838477626,0.9992592308472669,3253.236503580771,438648.8197629268,-0.003165136025295704,"CurrentSlice","Yes",574.2070000171661,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",4,3,"C - 4",1,1,,,,1338,0,40,5,16.567774559999997,0.2838496058167938,0.11209602790986413,4.873862139123617,0.023192900052661947,3.5849142751190066,0.3699625904351036,12.605742976913339,27.08275696553824,21824.53459119497,361583.96898383996,0.30094613129550507,805.3725200686139,3501.8409079074636,,,1.8069187224142442,6568.009252545054,36998,438.5024830188679,452.3889735849056,7.125033242797851,0.7986879252433776,0.826378790526477,95.5130617652468,4,77.68095000962866,1,87.06769113293309,3,84.0369242852322,2,0.4232573783382103,-0.37409503342328465,6.368418970768562,5.060185369760358,12.962686538696289,517.2388305664062,0.002808172721415758,268,0.11624153393396823,8364.704402515723,138584.53680191998,0.1480739177113038,225.8539544852154,4629.264337545603,,,1.8069187224142442,1238.5945513774936,13127,1.3001377274335177,1.6664867514799324,6.763972944108224,5.016591207460991,26.344263076782227,85.51639556884766,0.012789055705070496,122,0.11624153393396823,-0.004523849304530927,-1.0996806533134533,6.368418970768562,5.060185369760358,12.467181205749512,558.4285888671875,0.0023937574587762356,259,1304,0,108,15,123.99780959999998,6219.534453781513,17925,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,1.5456309599999998,9.273785759999999,2.098405414961252,0.5767394747506306,1.1666257015892294,0.48493053367232347,0.4947410910828603,8349.733477633477,77433.63942467261,0.1259946728654907,1.257234757859132,,4.606201927281843,0.9794283390875487,8349.733477633477,77433.63942467261,9.825622372982115,4.552713544897723,2,0.37354795137067603,4175.594011544012,38723.56428379813,0.12816711509333586,0.8215709531068279,,1.4013838446960263,0.9868787838882294,4175.594011544012,38723.56428379813,0.37354795137067603,"CurrentSlice","Yes",586.8899998664856,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",3,1,"C - 3",1,1,,,,1643,0,21,35,62.20730447999999,0.7766335565675627,0.6099450168711179,1.2456742373177034,0.4294870020362107,3.5118259320211767,26.394617808970338,11.86921158628491,31.7261627586807,32601.36013400335,2028042.7363180798,0.22259984994152182,8179.581433311497,2507.323668113317,30538.228764677264,18231322.572512325,6.089736317371238,7257.057873718657,45833,533.7998150753768,447.25913567839194,6.000137230682372,3.6597538043975826,99.09725798982001,38.13445943831835,2,21.484238899439617,1,21.484238899439617,1,21.484238899439617,1,-0.2766385118166263,-0.9456397879769693,1.736768712350137,6.366374001211163,38.352638244628906,1063.3609619140625,0.0011737499153241515,967,0.3454583663417014,14585.47906197655,907323.33699504,0.42247784864784815,3026.511437833739,2395.092053554246,13381.680857399486,7988863.471867493,6.089736317371238,6162.041815602087,62555,1.599826536096203,9.44102499298185,1.7030995289120083,6.380306607855585,45.15921401977539,267.8985900878906,0.007715707644820213,917,0.3454583663417014,0.5243597160595168,-0.41169179895416885,1.736768712350137,6.367819639766198,38.17310333251953,217.28326416015625,0.01231699250638485,699,1539,0,125,577,3059.2031025599995,3115.1692155727374,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,170,1.235687514352941,210.06687743999998,3.091057045919288,0.6715677277238318,1.4681432027283607,0.4225605321768411,0.47904571719610806,5198.959807580151,1092129.2527144256,0.21713786628117784,1.616187072489787,4.318796778241355,4.776991301318872,0.9674968284533432,3995.1616030030873,839251.1228110433,114.9910366115563,2.9205412418297163,4.647058823529412,0.03470735560385087,2363.3583387184176,496463.30648636376,0.07252603815553564,0.8216200783998069,1.1455200448483325,1.1115351310779438,0.9961169733861671,300.22696939233356,63067.741983521955,0.03470735560385087,"CurrentSlice","Yes",0,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",3,2,"C - 3",1,1,,,,918,0,49,32,97.42685039999999,0.6661195552585434,0.6910000632136565,1.3190979966659446,0.37213876155922876,4.522597325703811,5.09476505375543,17.49683199667871,42.87144993116351,23603.405347593583,2299605.44173056,0.1782069774920609,7466.468819575161,3020.9682978681567,20994.50488552196,19629862.067963034,2.2460122434775767,4206.2915255146,32960,303.17859336898397,448.4530934759358,7.441252725219726,5.141906103515625,-31.070485475568205,48.26274913458755,4,37.01684202167433,1,46.15762975804002,3,43.33004450979578,2,-0.6198250898869205,0.009031500058147124,1.142726414824559,6.794024204862503,90.10533905029297,541.55712890625,0.002188876736909151,1348,0.5054560726754288,7035.257754010695,685423.0047254399,0.18207093944824476,2216.5024359418344,3132.3327708658294,5509.245432100799,5151144.479014247,2.2460122434775767,1280.9159885332756,11349,-0.06835254948357926,0.24817006007324682,1.2708398867568418,6.714686986302834,207.6841583251953,55.56045150756836,0.021340005099773407,1067,0.5054560726754288,-0.004743552635052557,-1.2201283980538349,1.1747547828076295,6.774189900222586,103.56787872314453,189.2762908935547,0.006302692461758852,1046,779,0,252,180,1971.1483732799998,3168.76708780462,24485,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,123,1.2343021697560974,151.81916687999998,2.169014444860266,0.7129320472639777,1.3830172515242645,0.49714822571574385,0.49112640209515357,5820.91792216487,883726.9094199312,0.28573503766940767,1.3147697728841499,3.8144632507813845,4.103970301857115,0.9410058154259028,4294.905600254974,652048.9900589564,19.69074729840792,2.6814345164908544,5.138211382113822,0.11385209315222838,3065.024368451596,465329.44608521933,0.08697701389837478,0.6517147388986604,1.1748337711657215,1.237466273622514,0.99789256535503,456.12390637997487,69248.35146065889,0.11385209315222838,"CurrentSlice","Yes",12.726999998092651,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",3,3,"C - 3",1,1,,,,1313,0,83,22,142.64958095999998,0.4845401606818454,0.27196392587673096,2.282082612248773,0.11606326481034401,7.197985837108089,7.152291465100918,26.4873087103994,60.82404413802105,16155.62965668371,2304593.80067088,0.14565955547361642,9234.184658501728,3083.2573786182334,14074.964937057543,19268626.998831775,1.5899887913396216,2353.2218341889234,22440,438.243796347699,450.1876321402483,13.89110319213867,3.777878958892822,3.17847617949314,40.82847029883407,3,28.355386307973358,1,28.355386307973358,1,28.355386307973358,1,-0.950575996143643,1.4927202380078644,0.9001361142399186,7.067761833303676,182.82911682128906,261.484619140625,0.004405546467751265,1463,0.25687328427354944,4942.278305332359,705013.92924336,0.15679124204035538,2779.572135662764,3108.3730478177245,3963.045828696845,5425409.739485981,1.5899887913396216,774.9059540021633,8386,-0.14309606132280742,0.767067403817459,1.1583850053437243,6.870366323040784,264.54266357421875,29.20547866821289,0.040528446435928345,949,0.25687328427354944,1.0424751533689107,0.0575879748570447,0.9204118536241016,7.050413072011337,173.63192749023438,177.24317932128906,0.0063738166354596615,1209,1214,0,450,210,5653.153919519999,2497.468453357418,28132,1,0.41679935999999995,0.41679935999999995,1.3962634015954636,0,1.9634954661505089,0,0.360901371568466,11399,4751.095904639999,0.011259854463013022,1.0541209108773553,2.1000669780063053,4.3159183215833075,1.0027721729976313,5971.077881619938,2488.741439569346,7.198165776986696,,,17577,7326.082350719999,0.017198427700016772,1.0391694980074382,8.447781054872717,7.195796791253274,0.9939238777948454,15496.33528037383,6458.8626272052325,0.9552860561443833,0.9552860561443833,262,1.2134111138931296,317.91371183999996,2.8718591000162723,0.6687294395741243,1.510248638765761,0.40957512026989146,0.4897875566584778,4567.503925424633,1452072.1267755155,0.21643153708507182,1.6423508139984144,4.664371366764556,3.599847862997715,0.965446146767384,3588.271448789119,1140760.6953740432,58.33336020045233,3.3087770806711645,4.312977099236641,0.047284177861944596,2532.8103351022237,805215.1350190621,0.07449881540607456,0.9339283408177803,1.2173082530842798,0.9934354011818846,0.9969637996309922,452.14561547605535,143743.2909081741,0.047284177861944596,"CurrentSlice","Yes",25.449999809265137,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",3,4,"C - 3",1,1,,,,392,0,73,35,190.58150736,0.6804854183833332,0.6636764212253989,1.4284386926605483,0.29046704463692896,6.582353924215362,2.631629129167093,23.511277106954438,59.32474758637193,20469.942044833242,3901192.41047616,0.14640921454334466,11705.154848730597,3044.2955395690074,18003.65166872705,32928678.902101774,1.9530914017799024,2996.9881365318215,32893,138.23164330235102,447.43892181519954,10.968715530395507,7.279677868652343,14.201768440036128,57.592311555235334,3,45.989550508649046,2,59.5349410802662,3,45.989550508649046,2,-0.49347907635512306,1.5959388375059547,0.6615367921175186,7.376255610651303,262.7397155761719,420.41693115234375,0.002678261138498783,2528,0.24915431974684735,6229.645161290323,1187255.1651566399,0.18823699386615553,2847.8628931215308,3189.633191571622,4659.733656865545,8522652.85840708,1.9530914017799024,1172.649678014132,10719,0.15571239284811014,0.3601175726546977,0.8056220762569871,7.213088703864888,461.5316162109375,46.32034683227539,0.025842132046818733,2182,0.24915431974684735,1.418598935804676,2.966145312565427,0.6693090273615564,7.364838693236774,283.5462341308594,158.8856964111328,0.007565186358988285,2336,330,0,293,67,1017.6156374399999,4418.306573827565,19356,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43,1.9264854139534882,82.83887279999999,3.6089287779471473,0.678056017796711,1.7205525080871902,0.34137460971165545,0.601441929188591,5705.650946639028,472649.69300983,0.1911884744632665,1.4038628740510526,3.634377435006822,3.7058866942343642,0.9613559348980498,4135.73944221425,342599.99358752917,32.221514350586766,3.7391262863990042,4.186046511627907,0.11576404789738405,3038.710256479557,251723.33241256536,0.07167500945339937,0.8354803784798036,1.232097520194319,1.182352123408906,1.0008216571622472,572.419880373362,47418.61765844015,0.11576404789738405,"CurrentSlice","Yes",38.18400001525879,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",4,1,"C - 4",1,1,,,,1096,0,31,25,55.642714559999995,0.7896637945067589,0.6464130308268975,1.1964133568054394,0.5330480299949129,3.2550287521247467,2.267592889954566,11.820828458276518,29.756919724218942,24869.423220973782,1383802.2175564799,0.18267700641622023,3994.2843555303352,3102.50806150549,22293.06439744437,11904496.388235293,1.6389255050106053,4543.071785305524,38928,359.43538202247186,449.57153932584265,5.464353311920165,3.532229185867309,37.8773958047741,28.757109272750682,1,28.757109272750682,1,54.516354669073934,3,43.36672653922174,2,-0.13497417680873608,0.18886399450113522,1.9007139951465162,6.270011611536076,50.9371223449707,630.2140502929688,0.0018743701511994004,827,0.17056120075206427,7159.170411985018,398355.67572048,0.20327293225775256,894.8792955499513,4368.209775305615,5906.665706102665,3154159.4870588235,1.6389255050106053,1455.265562177137,10881,-0.4366709973219178,-0.4675259072406819,2.083070319404116,6.205746516115839,98.1715316772461,56.12956237792969,0.022100795060396194,548,0.17056120075206427,0.27377340585360194,-0.7270679384238865,1.9708510429379007,6.244051042975779,56.99391174316406,225.66970825195312,0.005459106992930174,657,1051,0,111,98,633.2224276799999,4525.776369919368,19078,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,1.255882282105263,23.861763359999998,1.9277775202363248,0.6878787276439233,1.1892913302019223,0.5061458861816943,0.4639388452319572,9449.043192614632,225470.83264058924,0.1584105419362014,1.3183638655220025,7.544117916872861,6.159090341075249,0.9685927015299624,8196.53848673228,195583.8617415381,11.400713338783904,2.8030963567730693,4.421052631578948,0.1752527115238727,3689.7507128635616,88043.95836774161,0.10377517736789744,0.6471720736499647,1.4321571510791689,1.4013681782535552,1.009208817356655,1113.3918893341497,26567.493790234785,0.1752527115238727,"CurrentSlice","Yes",561.4969999790192,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",4,2,"C - 4",1,1,,,,506,0,42,35,117.01642031999998,0.8339630105256247,0.9518172589142925,1.0622881169133844,0.8480127733885707,4.447896006513,3.6668070203598266,14.148070279723663,41.99087668975719,20862.53339269813,2441258.9764199997,0.15266738560671353,6629.538217899531,3319.2834403519514,18047.556648512083,20267406.11627907,2.5671425908844974,3185.0284301959828,28114,170.4294892252894,448.2685944790739,6.443213305664062,6.132761627197265,17.761389452263813,36.38867639426058,2,33.298307656982225,1,65.30506535822201,3,53.42230408537905,2,-0.678556992759799,0.6648058622380444,1.0014835912900266,6.938884054610498,136.7967071533203,445.65081787109375,0.0025432263500988483,1515,-0.05607627079294341,11113.578806767588,1300471.2089121598,0.18683098789656363,1954.9209486817251,4329.1630337286615,9717.745473434254,10913028.166666666,2.5671425908844974,2076.3609075347013,21469,-0.12258365356113061,1.0478463795705322,1.0347870836369633,6.916034547296076,180.81240844726562,135.177001953125,0.00883218552917242,1322,-0.05607627079294341,-0.06850970946519709,-0.9418666161398925,0.9237754424805076,6.9978353736311245,56.98783874511719,577.354736328125,0.003139725886285305,1480,475,0,157,160,1510.7934801599997,6750.480446927374,60965,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,77,1.45879776,112.32742751999999,2.514086514738666,0.7077873933996456,1.420693416266609,0.4578437764505905,0.5196873858093324,10770.855783497427,1209862.52234918,0.16739173059526477,1.3601354683924067,7.716433994147411,6.708350030695293,0.9700081842234396,9375.022450164093,1053072.1547691799,21.835650126122975,2.985130133316835,4.259740259740259,-0.003564463993613414,3774.5439661883743,423984.8137830779,0.08174640012753205,0.8260969857977863,1.3408792715549727,1.3456866144242108,1.0020345045832284,959.567222002328,107785.71758003424,-0.003564463993613414,"CurrentSlice","Yes",574.2070000171661,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",4,3,"C - 4",1,1,,,,1578,0,48,5,20.527368479999996,0.25829451724960073,0.11249749502758284,5.20412552892994,0.020130804831349547,4.1233535896343145,10.96474688435805,15.175033653998925,31.601956965538243,15730.53807106599,322906.55137343996,0.20923401445390813,1114.5951559268658,3501.8409079074636,13108.756702244696,2582425.070342205,1.422022658834837,3291.3636301291735,21131,516.1834172588832,452.33947614213196,8.203174209594726,0.9228365498542785,-1.433267629057411,77.68095000962866,1,77.68095000962866,1,94.32730407353895,3,90.04150921187102,2,-0.35107038312640415,-0.894468731557426,5.230745445644051,5.26209264709657,25.35955047607422,253.03370666503906,0.004823928698897362,267,0.698952521905244,6582.918781725888,135129.9995064,0.08727843276602815,315.9377317216784,4629.264337545603,5395.748629634633,1062962.4800380229,1.422022658834837,574.5468342950868,7779,-0.43470516731621583,-0.46739156272445204,5.539952072972764,5.219870483813731,51.28571319580078,48.45578384399414,0.02172461897134781,147,0.698952521905244,-0.3855003308692768,-0.5928281035292859,5.333814321420289,5.248018592668957,25.590038299560547,545.8352661132812,0.0019751908257603645,261,1243,0,421,176,5642.421335999999,4113.732871652816,27913,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,231,1.1601817683116882,268.00198847999997,3.4249689132291463,0.655728907831867,1.6116124379644996,0.3780343507609213,0.48213018315860384,7949.540857886134,2130492.7574164886,0.1647846480257211,1.5554901384090516,6.696210180050984,4.385432243877932,0.9754236017371675,6762.3707057948795,1812328.7959919285,45.98032326775583,3.2680867749004765,4.259740259740259,0.07114055867951893,2911.4140173283054,780264.7459325308,0.07111441691032677,0.8975002229987887,1.1104717013979035,0.977108540204266,0.9988416660848768,289.6326485070126,77622.12572860828,0.07114055867951893,"CurrentSlice","Yes",586.8899998664856,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",3,1,"C - 3",1,1,,,,594,8,49,35,73.77348672,0.516894845740684,0.4739670357602169,2.153696637471268,0.1277365435599529,5.028662439712329,8.260275329694895,17.72756941715361,42.35005572430597,31710.675141242937,2339407.07141472,0.19062539593876365,8354.522219723269,2507.323668113317,29590.67382334445,20950197.06692787,6.362603543286121,6044.860004284945,44618,199.6299152542373,444.79195593220334,9.08835972290039,4.307582917785644,-34.13519918257522,86.91794246657531,3,50.391855276134955,1,81.7307137480431,2,81.7307137480431,2,-0.33255026783645114,-0.5404664155134093,1.4563184270165024,6.5409056219814055,52.996490478515625,1000.3096313476562,0.001185838831588626,1140,0.5385061572364427,15239.021186440677,1124235.7271236798,0.16271095054709533,3506.1069489175634,2395.092053554246,14261.321881008798,10097015.891754229,6.362603543286121,2479.555622653087,22499,-0.5283436873040895,0.284086427665311,1.532126783491334,6.507359782702857,138.9493408203125,243.48471069335938,0.004660258535295725,1145,0.5385061572364427,3.285399127344621,13.412517288594529,1.4762679945098791,6.531115407566717,99.72823333740234,227.70448303222656,0.0077289710752666,1137,324,0,500,305,5294.706469919999,3246.7220396355265,31673,18,1.591942,28.654955999999995,5.131162323555295,0.66565068944025,1.847719063880767,0.2740177085879709,0.48328656682309007,7376.364214417361,211369.39200410404,0.13297721364674575,1.519413431601716,2.234987791235418,2.4243408972660907,0.986584455965156,4075.9595127254643,116796.4404949296,56.46343073908769,7.0780315107671035,2.111111111111111,2202.814639849099,63121.55658103177,0.06468966833899968,0.9038805329827212,1.039062863429115,1.056831531623758,0.9993713786950441,82.81332195061259,2373.0120967086377,-0.10181145819386936,-0.10181145819386936,226,1.8553104254867252,419.30015616,2.5103868842395047,0.6945593736214551,1.5604899510720562,0.4520648648353376,0.6074603135596983,5507.466045177718,2309281.372788915,0.21502436105143796,1.649665349678181,5.633087816038599,5.060457930789149,0.9639827010414463,4529.766739745839,1899331.9013438043,56.511786472604705,3.4125682671536093,4.849557522123894,0.08115296451543952,2602.9273121573146,1091407.8284606908,0.0841568071805845,0.8368267507298497,1.2277951387018677,1.2242092549850336,0.9985036558361665,482.92599425882827,202490.94480644996,0.08115296451543952,"CurrentSlice","Yes",0,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",3,2,"C - 3",1,1,,,,1568,0,36,75,173.28433391999997,0.5655624684890312,0.6226191001694225,1.7263506311790817,0.19365881806359764,6.90008160638339,8.329883614637057,25.30430826558987,62.050358069097534,19655.397474443776,3405972.4592918395,0.18496541889848017,11845.61214309538,3020.9682978681567,17149.82329171117,28520156.134115677,1.6597688261559225,3635.568827476622,30411,510.9106809380637,442.0374285027059,11.716227355957031,7.294746933746337,104.2011633872187,81.2431396580027,2,67.8632737150153,1,67.8632737150153,1,67.8632737150153,1,-0.6181596816031815,-0.0832387227892788,0.6946129349873389,7.313513442134439,187.18479919433594,394.878662109375,0.003023747820407152,2316,0.24777060147423588,5198.948286229705,900896.2908638399,0.25449516655995663,3218.359716437816,3132.3327708658294,3737.108945631773,6214812.176585639,1.6597688261559225,1323.10721004063,9957,0.22483684736028545,-0.08451685096236883,0.803812886245109,7.201241766363127,401.8657531738281,33.89679718017578,0.039459072053432465,2093,0.24777060147423588,1.1982750710829349,3.405478887241471,1.0265518596715542,7.000941809332596,374.4519348144531,27.618886947631836,0.04114750772714615,1186,1516,0,148,446,4731.1937351999995,2778.439202730977,16495,13,1.3545979199999998,17.609772959999997,4.8536473542281255,0.7747672010533193,1.8302380409165084,0.38806206905347784,0.45897679776416717,7542.4436922105215,132820.7209834114,0.10273546397682431,1.5827292076423054,1.4741120661319658,2.7082874931354515,0.9941783347250825,2425.842406935305,42718.53402287065,56.617026018959145,11.020889925763797,2.923076923076923,2770.7907412969453,48792.9958739093,0.05693924082426893,0.7714123184445868,1.1058506111661361,1.1419467230433815,1.0057373083187144,265.21655856433836,4670.403381550542,0.0026478187263415153,0.0026478187263415153,148,1.2158994843243243,179.95312367999998,2.820212072684644,0.6953264048958708,1.40455261245555,0.4468740561276101,0.4722080981863813,5346.373378829361,962096.5898799393,0.22850430240687006,1.7374693301607915,3.6572920363755896,3.7693982053598374,0.96703946400049,3884.534038231429,699034.0342210301,65.9004059658361,3.093450148261184,4.3108108108108105,0.040600961716732706,2829.275083530681,509136.889031339,0.08199684805645566,0.8312791168384603,1.1291923037158063,1.1422853699654134,1.0001587145106212,323.70090079807414,58250.98823664324,0.040600961716732706,"CurrentSlice","Yes",12.726999998092651,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",3,3,"C - 3",1,1,,,,813,1,47,42,147.23437392,0.890650852420938,0.7198945876231299,1.0714795469981127,0.6481103586436217,5.010794621760409,1.0055389587435586,16.32295901115971,45.57805572430597,16233.04033970276,2390061.5312342397,0.16217359356735758,6380.762748287865,3083.2573786182334,13697.907006369427,19355142.6,2.03325214183981,2632.570486413476,22437,270.25282038216557,445.9099346072187,8.133190946960449,5.855040142822265,-38.59681280571885,25.322089082558232,3,20.913438891329555,2,20.913438891329555,2,20.913438891329555,2,-0.6431380231420115,0.08817142849839188,0.8189048312379887,7.148973637820659,213.6974639892578,269.9766540527344,0.004220517817884684,1970,0.3343566857488286,6320.1061571125265,930536.8731503999,0.2125062475595389,2527.1071267244697,3108.3730478177245,5182.395046001415,7322724.199999999,2.03325214183981,1343.0620436259205,12903,0.37239774231707856,0.7735573643056717,0.9481265110296714,7.035497981854872,375.091064453125,48.4033203125,0.024927183985710144,1867,0.3343566857488286,1.8944406406714378,5.399425129137411,0.7768326564220921,7.187606849588134,139.87100219726562,412.3424987792969,0.00319162430241704,2000,789,0,138,67,465.98168447999996,4414.183139534884,15410,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3.5427945599999995,3.5427945599999995,1.0789583326647454,0.5788830789402378,1.1407695847810553,0.5050448430596819,0.8020141482399976,9336.64705882353,33077.82240863999,0.27097233569504625,2.2679164425339637,8.206518304726035,7.358616327657578,0.8871662495248593,8198.935947712418,29047.145673343995,9.540111177514646,,,0.45271584498752515,4095.794117647059,14510.557118879999,0.13079431867027796,0.7295243736935184,1.6156129004314275,1.606479101901994,0.9905026149172047,1560.6607843137258,5529.100536672,0.45271584498752515,"CurrentSlice","Yes",25.449999809265137,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",3,4,"C - 3",1,1,,,,631,0,32,10,24.79956192,0.5897470488165206,0.3393079082057086,1.7539773816411264,0.19919764436599918,2.631140547400969,9.215141954680275,10.012005097881243,22.987622069010524,20601.546218487394,510909.3210931199,0.2639367777270102,1706.5460488692647,3044.2955395690074,18053.031466934597,4296621.489130434,4.836460083939712,5437.505725101634,30578,208.37960672268906,451.68535966386554,4.982815256881714,1.6907086217880247,-1.929858329294643,74.10139137924222,5,70.27637587713006,1,74.10139137924222,5,70.65457921083629,2,0.05838871273332179,-1.1041551694485663,4.201680672268908,5.472270673671475,22.341463088989258,428.1000061035156,0.003080586437135935,410,0.8550991444729864,15426.533613445377,382571.27555759996,0.09469479435824904,927.3908307427358,3189.633191571622,13475.924917793203,3207270.1304347822,4.836460083939712,1460.8124281858265,18138,-0.8587244038897002,0.8489786322289183,4.55476308170327,5.4140230114395465,33.5803108215332,232.62176513671875,0.004534211475402117,193,0.8550991444729864,0.13413468732131756,-1.059814286832558,4.27229715415578,5.460621141225089,14.516372680664062,2173.864013671875,0.0005191708914935589,397,530,0,340,70,1663.4462457599998,4129.93735905788,21308,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,98,1.2110573240816325,118.68361775999999,2.579103575644511,0.6453154216098167,1.4451200871162615,0.42209097161525505,0.4847819504979997,5986.0082787023775,710441.1184577084,0.17443100951152563,1.377364636678429,3.0687899075016647,3.887982044307721,0.9696004797993834,4035.3995830502035,478935.8216235937,32.1512780337913,3.2413837477294103,4.73469387755102,0.055890937423168606,2927.9706109279277,347502.1447998838,0.07519999205125108,0.8779987308747232,1.1488929421122371,1.1392636931170332,1.000426553109126,379.4558593751326,45035.19417087055,0.055890937423168606,"CurrentSlice","Yes",38.18400001525879,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",4,1,"C - 4",1,1,,,,1184,0,37,26,75.64908383999999,0.8091522285211065,0.8128746019216636,1.1018171528154348,0.7509830455622561,3.642224070855351,6.458112684699666,11.625282468826294,34.276119724218944,17103.465564738293,1293861.50046144,0.1283532579128664,3928.747771742343,3102.50806150549,14515.10370906819,10537965.292783506,2.784489793954344,2195.2855268346834,24819,388.19234380165284,449.47943636363635,5.6549783706665036,4.596788291931152,8.77180624242865,28.757109272750682,1,28.757109272750682,1,38.11853157684612,2,38.11853157684612,2,-0.1433212233823451,0.37033540298267953,1.4950405634102102,6.52835562750425,121.7811508178711,299.18115234375,0.0036220625042915344,955,0.003979334599136059,12163.235537190083,920137.6249185599,0.2556687261910624,1515.4553205438806,4368.209775305615,10826.720073272558,7860198.773195877,2.784489793954344,3109.7589361552514,21721,0.6577584209167885,-0.4529049657403248,1.4570953714454842,6.547450591156038,78.62149047851562,164.85714721679688,0.00787922739982605,819,0.003979334599136059,0.24889032390361523,-1.1856743612737028,1.4115611410878128,6.570364547538184,39.575439453125,861.7903442382812,0.001753324526362121,1140,1140,0,143,239,1543.8248294399998,6137.45153887689,41979,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40,2.3158414439999997,92.63365775999999,1.7557558543702634,0.6781162225797176,1.6807584901321018,0.43812129235800884,0.7422627243793267,12108.991782571753,1121700.200605404,0.15577251123732455,1.7896826254774438,9.060120970900327,7.892902255594432,0.9709374562013136,10772.476318654228,997893.8845299204,19.642190970932422,3.5588675385197335,4.35,0.056197784623531775,3547.040110789972,328575.29968391074,0.08709520435818585,0.8767542426836185,1.3703803056051744,1.3471666584196786,1.00303925653095,958.6782551198689,88805.8733867279,0.056197784623531775,"CurrentSlice","Yes",561.4969999790192,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",4,2,"C - 4",1,1,,,,788,0,31,26,41.679936,0.4856075203438094,0.7408770478173795,1.446732380802265,0.638817989587712,3.097902093750036,4.690995667741088,10.78847631873936,32.841709241493334,18215.3325,759213.89281872,0.23657954439234571,2068.95262357483,3319.2834403519514,15334.09175925926,6133636.703703703,4.034082884829188,4309.375063805088,26457,259.48600799999997,449.851659,4.978347179031371,3.6883431610107418,54.064981680954304,30.17083203099658,1,30.17083203099658,1,57.87677591294467,3,42.27986991746305,2,-0.10376693968363376,-1.0587282162719132,2.575,5.970670131691183,37.532142639160156,328.69464111328125,0.0038346932269632816,560,0.5755421708285955,17464.2025,727906.8424910399,0.229570927753441,1334.4678055195054,4329.1630337286615,16170.396944444445,6468158.777777778,4.034082884829188,4009.273170398964,24965,-0.44342013182011847,-0.9251222199381415,2.575,5.970670131691183,41.27225112915039,309.36126708984375,0.004158131778240204,573,0.5755421708285955,0.9062400462158656,1.1716562280040854,2.5625,5.974135867593983,33.45956039428711,641.4320068359375,0.0018397691892459989,544,683,0,181,145,1489.5367127999998,5577.007345225604,29025,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,1.0895012682352938,74.08608623999999,3.3936745369013273,0.6473963620796597,1.3963810088066013,0.39055484407556695,0.42472952892168075,7642.31425698565,566189.1531162203,0.15150492300044047,1.2951026711993923,5.906849158414741,4.759818542829438,0.9847243443578078,6348.508701430094,470336.1631495403,19.50376728189413,2.764421627899501,3.8529411764705883,0.08966820905245658,3426.830792925415,253880.48165455984,0.06497901810922,0.8510458612298321,1.1893594118915618,1.221721185193447,1.0023492669496705,545.5900521846743,40420.63165783988,0.08966820905245658,"CurrentSlice","Yes",574.2070000171661,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",4,3,"C - 4",1,1,,,,750,12,77,53,251.12161439999997,0.6963075591368089,0.7402203749915865,1.4246780690307235,0.2931170447286019,7.545889985391384,2.8170839373267804,26.870070549963202,67.32035917265684,16461.43153526971,4133821.2624719995,0.23096543501791,12640.719146446272,3501.8409079074636,13914.09578647744,33532970.84541063,1.9991038333952966,3802.0216955611104,25955,254.88877344398338,440.7697379253112,12.129505778503416,8.978507315826416,28.600635104056725,57.86497766414084,3,43.44346317311555,1,71.78554360260058,4,43.44346317311555,1,-0.09563873213642016,-0.6540356447580669,0.48690621717945626,7.671815254431407,244.26597595214844,287.28216552734375,0.004438918083906174,3395,-0.24646626953571554,9254.380082987553,2323974.86671104,0.3091484231981961,4865.9350929420725,4629.264337545603,8089.144575741176,19494838.427536234,1.9991038333952966,2860.9770103323926,22165,0.971249629971574,1.1347974212651293,0.5344260601573665,7.60010664400413,419.769775390625,102.77751159667969,0.013749861158430576,3744,-0.24646626953571554,1.4215880070480307,0.6327595674245745,0.5006800847092854,7.652181454286905,164.08079528808594,294.744873046875,0.014985160902142525,2822,656,0,366,81,1813.9108147199997,5230.153952205882,22165,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,91,1.5618525468131867,142.12858175999997,2.5689805646865387,0.7301187800084481,1.4333373802602896,0.46564662778777915,0.5341162873098589,8030.148737960202,1141313.6514481374,0.182433500057888,1.6025432463405271,6.891438415686995,4.429900270737217,0.9628999447981531,6864.913230713825,975700.3813868156,29.01195022983666,3.471182326355953,4.923076923076923,0.05645030273402416,3420.8027532668575,486193.8438025216,0.07819183836666214,0.865127034848086,1.3428943376972238,1.148066047864465,1.0034520139244594,873.4670044745872,124144.62656012864,0.05645030273402416,"CurrentSlice","Yes",586.8899998664856,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",4,4,"C - 4",1,1,,,,178,0,72,38,187.97651136,0.6585298740933573,0.8023624242776185,1.5072674299646642,0.27102137532112436,6.715170171064398,4.8420493536889815,24.33663679640225,59.89202317256983,21524.833702882483,4046163.1470719995,0.20378448722968331,12149.543744303654,3586.8897668925642,19011.838147326926,34297356.01777777,2.3900244395955013,4386.427198846112,37516,68.54811884700665,447.7155478935698,10.475259214782714,8.40495437850952,-18.1765679357875,17.362873381948912,1,17.362873381948912,1,47.53035458861398,2,17.362873381948912,1,0.06869154265733936,0.4544657859598731,0.6200805305775291,7.419465870893737,176.953125,485.946044921875,0.0025176776107400656,2688,0.2621603731409042,11155.70509977827,2097010.5264172798,0.19951944478868497,3702.774282858387,4667.611307634291,8985.79398866716,16210372.355555555,2.3900244395955013,2225.780087734062,24507,1.1660394947758446,3.2114810819325523,0.7079611211350976,7.316172690922925,309.5446472167969,142.97691345214844,0.008212150074541569,2295,0.2621603731409042,1.773419405454918,3.4019995133984917,0.6188514314088918,7.419944277887836,129.92613220214844,586.2978515625,0.0026153670623898506,2572,0,0,254,75,1089.30512736,6422.2665965180795,25156,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43,1.3957932055813953,60.01910783999999,2.8624285309958997,0.7669841727166952,1.5283757710439545,0.47636865754618946,0.5200759331413243,8934.322783920745,536230.0826455081,0.1552220957139797,1.5479368100017938,4.117368097786223,4.658210200372288,0.9627659932128405,6764.411672809634,405993.95366451616,34.616857571735466,3.1029582386577506,3.7674418604651163,0.052257520650097214,3835.295236513752,230190.99839855716,0.09715206888712478,0.9558233233176243,1.5261846476548468,1.326060014033647,1.0047360985024616,1322.2996809581964,79363.24714822757,0.052257520650097214,"CurrentSlice","Yes",599.579999923706,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",5,1,"C - 5",1,1,,,,23,0,10,6,4.480593119999999,0.9941584211054685,0.607940899166704,1.1624844638884175,0.5030526708757099,0.9104820891227305,4.730573299149599,2.9760689508141436,7.52566510347228,2945.6279069767443,13198.160134079999,0.04248108075692312,42.811171502459175,3343.448245778339,266.38763237720195,11454.668192219684,0.8751650470094664,125.1334569961255,3191,8.850725581395348,451.9500279069767,1.5559914876937866,0.9459508641242981,-5.53647354087408,75.91408859121572,3,54.38079619306619,1,61.818118655847606,2,54.38079619306619,1,0.00036263126589465284,-0.7075420733280446,23.25581395348837,3.761200115693562,19.117647171020508,11.264705657958984,0.09538398683071136,34,0.5785875761905481,3332.6279069767443,14932.14967152,0.28609601090830133,34.91200914216825,3807.9993235158263,2281.9917513703367,98125.64530892448,0.8751650470094664,953.4515500277281,5040,0.10497128139772091,-1.0814875904319383,23.25581395348837,3.761200115693562,10.263157844543457,14.578947067260742,0.09660087525844574,38,0.5785875761905481,0.02944326068691108,-0.7407482134497148,23.25581395348837,3.761200115693562,11.399999618530273,60.95000076293945,0.01745539717376232,40,11,0,53,25,65.1249,4051.5728,8208,1,0.31259951999999996,0.31259951999999996,3.2340725067158833,0.5776017285397345,0.9308423232128326,0.49999999999953104,0.2151999999999549,9204.333333333334,2877.2701819199997,0.06549490143289642,0.9568908756974045,3.208512280052413,3.1494455152388285,0.999004092274717,6335.610221205187,1980.508714055835,7.743883061940863,,,2912,910.2898022399999,0.16233981461821537,1.0174703004891683,1.0868752711756124,1.050758011324982,1.0436126373611558,232.75972540045768,72.76057843551487,-0.8120371859942422,-0.8120371859942422,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",612.3469998836517,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",5,2,"C - 5",1,1,,,,1296,0,32,20,44.18073216,0.7021223336259429,0.9501857756485462,1.2274072233189632,0.5633979342077886,2.937790699676501,14.423029490220301,10.409987204603086,28.11997903454877,21479.462264150945,948978.3692332798,0.16312497087041794,2835.2297895641445,3288.674104931486,18628.273798039172,7898388.090368609,3.5306043093567467,3503.836656151864,27781,422.4172981132075,450.4339018867924,4.2618573097229,4.04955619354248,-20.822591269967784,58.925943190216884,4,34.862669837934114,1,45.25900326037578,2,45.25900326037578,2,-0.9256109500615888,0.24859327142140053,2.469740121039516,6.017037833507432,46.629234313964844,451.89483642578125,0.0025901920162141323,561,0.5076379085427686,13603.752358490567,601023.7393214399,0.16227247654689023,1379.082195223661,3853.094588492439,11874.933095708166,5034971.632580263,3.5306043093567467,2207.514585542863,19513,-0.45026469638637057,-0.2610337882940148,2.491990032039872,6.010498709162526,55.387367248535156,191.93894958496094,0.005965325050055981,475,0.5076379085427686,-0.5076622558208383,-0.19834821998914132,2.458615165539338,6.020307395679884,29.566879272460938,491.0270690917969,0.003452703822404146,628,1146,0,234,307,2385.8637364799997,4356.9455823907065,25011,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,195,1.3161241329230766,256.64420592,2.5593235756173023,0.7054898464194765,1.419829505914831,0.47321424250451133,0.5022078175691198,6651.450797154141,1707056.3080515752,0.24394446982622442,1.5321359547137183,3.847395121251218,4.490979386656346,0.9496008560017538,4922.631534371739,1263364.861175586,53.153060150778764,3.0572892559304674,5.18974358974359,0.057489819665859955,3261.0276447322526,836923.8503654768,0.07089257564110743,0.8386582363617627,1.1437432788087094,1.18284308302013,0.998953392538835,409.8391786204811,105182.8505519584,0.057489819665859955,"CurrentSlice","Yes",625.0569999217987,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",5,3,"C - 5",1,1,,,,23,0,10,7,5.418391679999999,1.068656080568152,0.7712607648688905,1.0670975917144696,0.6816530143038494,0.9592843153273908,18.591199549673124,2.9760689508141436,7.982173241406316,2724.8653846153848,14764.38792912,0.03510697743597902,52.639633868347275,3185.9644664499124,93.20913461538476,4846.875000000007,0.90311735988269,95.66178757377261,2895,8.864584615384615,451.79584615384607,1.519213117790222,1.1717094712257385,-9.265119667028388,100.36827849718289,3,83.95425546595368,1,91.77273261114487,2,83.95425546595368,1,-0.2325504714078758,-0.7918464912601086,20.710059171597635,3.8979247046922008,17,9,0.1111111119389534,17,0.22850163566428358,3225.8076923076924,17478.689561279996,0.1251260504353109,74.82818182039117,3571.8588032974,2065.302758097166,107395.74342105264,0.90311735988269,403.63257600230617,3927,-0.36664662317586993,-0.6748288611623852,19.970414201183434,3.924584211636814,13,13.199999809265137,0.08194444328546524,25,0.22850163566428358,0.3860903245951425,-0.3956006847765874,19.970414201183434,3.924584211636814,21.60714340209961,125.5,0.008105980232357979,56,0,0,100,123,1038.2472057599998,2246.8313930148533,8756,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,0.7074620715789474,13.441779359999998,2.6842843804315275,0.8241359867914764,1.1666103563771824,0.6389578231384906,0.34136123727517276,4775.629535376904,64192.95851963565,0.1810833643959048,2.0000769470427193,4.115130745760846,3.4219527368108875,0.9590921046550888,3615.1246011663775,48593.70724778644,17.94656245094443,6.1260256396881045,4.526315789473684,0.08025182717894583,2711.1233853865433,36442.32236410216,0.07467504754158534,1.0115684969176586,1.030196624421044,0.9766361053935461,1.003177307208378,79.4671353865433,1068.1797002371634,0.08025182717894583,"CurrentSlice","Yes",637.7400000095367,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",5,4,"C - 5",1,1,,,,1,0,19,22,33.96914784,0.6828402009869292,0.867652116018437,1.140874606065058,0.8000390112105631,2.483541093301711,9.623900825792909,8.018185660110397,25.002746482812633,28951.030674846625,983441.8411142399,0.2351393646084944,2217.7764964881803,3402.3106550382086,26560.132213308163,8658603.10153846,4.251283465653684,6807.526957644466,42976,3.2339411042944786,449.8485349693251,3.751739441299438,3.2552046649932858,56.287966876164525,28.69647276250983,1,28.69647276250983,1,46.49014775593477,2,28.69647276250983,1,0.1857408145259833,-0.9531238924363885,3.10512251119726,5.778392507985604,21.75623893737793,859.9002075195312,0.0014615088002756238,521,0.3078130327611444,16747.088957055214,568884.3406718399,0.2892921046849651,1770.6752048850067,3939.3018819741656,15601.02280320906,5085933.433846153,4.251283465653684,4844.80061173284,26564,0.06634450784187353,-0.9772874861063214,3.10512251119726,5.778392507985604,26.441965103149414,307.66741943359375,0.0046024806797504425,448,0.3078130327611444,0.8065865825754136,-0.17421788872807698,3.10512251119726,5.778392507985604,20.588571548461914,1023.9638061523438,0.0012992516858503222,525,0,0,173,90,1202.9871527999999,3469.144391511477,26564,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",650.4470000267029,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",4,4,"C - 4",1,1,,,,441,0,25,6,11.357782559999999,0.46140039916056574,0.21646344291381872,2.5720115537789328,0.08757698412241288,2.1562211593040495,12.253984457980161,7.7740534600683056,17.58784882760421,18948.990825688074,215218.51752959998,0.2419786705176685,645.8552706482968,3586.8897668925642,16185.921217844936,1764265.4127450981,1.5189251688507277,4585.251607651498,25895,146.10994128440365,452.3109137614679,4.214917864608764,0.912375632572174,-0.9354453175168085,48.144449431216266,4,37.68076221028721,1,55.056139784235704,4,37.68076221028721,1,-0.38167754084645755,-0.9809921405327096,9.510983923912129,4.665911288447127,12.337079048156738,354.9438171386719,0.003621108364313841,178,0.07091429845391915,7089.752293577982,80523.86495471999,0.06542816981539186,169.2627262063025,4667.611307634291,5431.971901421119,592084.937254902,1.5189251688507277,463.86951701328405,8476,0.5512543737018982,-0.23062559561538887,9.847655921218752,4.6404746946651105,26.762712478637695,57.49152374267578,0.017809301614761353,59,0.07091429845391915,1.2023723589684117,0.39655844347855007,9.67931992256544,4.653192991556119,24.946903228759766,136.6725616455078,0.0077141025103628635,113,284,0,215,78,820.6779398399999,4600.516124936516,16473,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44,2.048474127272727,90.13286159999998,2.2165539569374344,0.6999056914368114,1.4772678774123955,0.47067815977467176,0.6177382428120608,6882.911426246038,620376.5029868927,0.1983731727639929,1.6910562540654617,4.15188372284401,3.5886377724902543,0.962853154673715,5225.131034089175,470956.01233742444,30.37005040957424,3.4316364760824563,4.136363636363637,0.06386582152483411,3286.137941627322,296189.01629120426,0.08269886612317626,0.9600476708154093,1.189306969429733,1.1361879219895101,1.0032646391809188,523.0683337841847,47145.64573631252,0.06386582152483411,"CurrentSlice","Yes",599.579999923706,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",5,1,"C - 5",1,1,,,,1139,0,29,50,99.09404783999999,0.39480074955554634,0.5543676373841803,1.622157612344671,0.3673622180582302,5.058017963346835,5.784320222703995,17.0840203652419,56.16163365529544,20305.2912723449,2012133.5047468797,0.1503404549058109,4865.2103319633125,3343.448245778339,17407.841341405674,16554857.115676796,2.6181462249900855,3052.7067268793244,28912,371.9093867507886,446.38759495268135,8.848736652374267,4.905453231811523,98.2645325983989,36.76237044554129,1,36.76237044554129,1,61.884255781732094,2,36.76237044554129,1,-0.0925080836137216,-0.4190565441244938,1.126712597619861,6.807951488120494,115.70023345947266,418.9961242675781,0.0026326614897698164,1291,0.11065169569609412,9969.89905362776,987957.6537801599,0.13712711537117686,2348.412561081289,3807.9993235158263,8794.024398931628,8363117.2033839775,2.6181462249900855,1367.143497765801,16219,0.5718349196493746,1.0830356500314116,1.2306487940636952,6.747606147409203,213.4225311279297,110.14612579345703,0.009915154427289963,1136,0.11065169569609412,1.1438880179745203,0.640783135145488,1.0935414710952331,6.829817329778536,48.53485107421875,645.6984252929688,0.007149951066821814,1406,1066,0,122,316,1297.49640768,4490.442338580147,60329,1,0.10419983999999999,0.10419983999999999,12.566370614359172,1,3.1415925460576575,0,0.2282540689670175,11876,1237.47729984,0,1.3489323034984098,3.103341129983042,4.063609344038278,1,8049.156767955801,838.7208473559115,10.984255211023394,,,3367,350.84086127999996,0,1.0377961857060296,1.162056318574094,1.2149389505945105,1,469.5500690607737,48.927042068121565,0,0,65,1.5918529403076922,103.47044111999999,2.3319305703596864,0.7310233986805309,1.4033344869822835,0.5120084125807093,0.5562806585797427,7272.927297200646,752532.9956750401,0.20947637974042604,1.887697733421958,6.185121235630427,5.533782537278347,0.9507171393450956,6097.052642504513,630864.7264518036,32.9883106930642,3.2026119623668765,4.246153846153846,0.015532390335359568,3762.138190852727,389270.09816193033,0.08985413193918237,0.887659807418815,1.2984307858714945,1.3160101361509156,1.002891368082802,864.6882599135006,89469.6756845351,0.015532390335359568,"CurrentSlice","Yes",612.3469998836517,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",5,2,"C - 5",1,1,,,,114,2,52,39,97.53105023999998,0.5859506078509892,0.530159975889815,1.7897420889449376,0.17375370728739947,5.270802255721574,0.14397120231203778,19.518058690351353,45.73470455191018,35644.47435897436,3476443.0194835197,0.22545621329974713,7930.25939510348,3288.674104931486,33058.534060466896,30942787.880597014,3.645283136428585,8036.26821403429,54226,44.63641153846154,446.18823076923076,9.313708586883545,4.937755519866943,-33.1955692222414,48.15309379914877,5,38.05173477773047,1,53.07645658222516,3,48.986897797482676,2,-0.4296529283871217,-0.33028486946321145,1.1049017459273869,6.817918136971269,57.680076599121094,1287.04150390625,0.0010106542613357306,1591,0.6065348160560026,14045.620726495727,1369884.14072784,0.2596428297557918,2091.708747748669,3853.094588492439,12572.501323510653,11767861.23880597,3.645283136428585,3646.8447111039504,25265,-0.5698329441766415,-0.057541755223101454,1.1528416977134925,6.787737436793744,127.34366607666016,220.10647583007812,0.006684120744466782,1484,0.6065348160560026,-0.2566659842031227,-0.16951565987188344,1.116316020162174,6.810512718375542,66.15481567382812,926.0844116210938,0.0013966632541269064,1505,81,0,140,67,531.31498416,7709.703079035105,34668,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,2.3184464399999998,37.095143039999996,2.6514631695087836,0.6751348457552437,2.2331112337872296,0.3488025320134006,0.8333740992837431,11083.086896624429,411128.69375503284,0.15356148104971598,1.7567168971142517,7.523549601048002,7.483166652087002,0.9697149493626888,9609.967493639355,356483.1187863021,10.239271877519075,3.3811105364825673,2.25,-0.02074338766838832,4918.327853878918,182446.07525725468,0.12978942068299992,0.8629265128334282,1.9019494984929268,1.7839806085003533,1.0068112393172022,2332.3875553714556,86520.24999122006,-0.02074338766838832,"CurrentSlice","Yes",625.0569999217987,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",5,3,"C - 5",1,1,,,,587,0,41,7,19.7979696,0.3156595292788714,0.15928954788925326,3.8867269038229355,0.042351716486265345,3.4995515713232366,2.1702085034536425,12.916034369728193,28.074097655208416,20138.173684210527,398694.95039951993,0.22907914085092348,1214.6557949754754,3185.9644664499124,17437.762276443536,3313174.8325242717,1.9503997820820071,4613.235525885624,26656,195.32458105263157,452.23430526315786,6.912855880737304,1.101145687866211,-1.7513361523987336,61.353841924525604,5,48.1481134486734,1,59.51513429061783,4,53.35677911255619,2,-0.6326437288053568,-0.8458721764264339,5.318559556786704,5.239727786049329,22.226667404174805,406.7300109863281,0.003161223605275154,300,0.575555403288996,6966.5526315789475,137923.59721679997,0.05976135153638863,366.39759547262383,3571.8588032974,5629.979816044967,1069696.1650485438,1.9503997820820071,416.3306008125428,8164,0.07493622371258965,0.10022171508009725,5.92797783933518,5.168553335851391,61.1875,54.921875,0.01862056739628315,128,0.575555403288996,1.2149062978809015,0.9704361013786129,5.484764542936288,5.217838927715857,27.26431655883789,193.5814971923828,0.006157685071229935,227,424,0,340,69,1325.4219647999998,3662.6904088050314,16026,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,78,1.1782597292307693,91.90425887999999,2.5081487634390967,0.6804908677737698,1.3648755927506768,0.47741460033904703,0.4718996709855933,6254.777904066351,574840.7277322176,0.19928511169794388,1.3151089443525048,4.67971354150838,4.4818288789804335,0.970617862440435,4918.205088532371,452003.99368141225,23.240852960700668,2.989293010174163,4.564102564102564,-0.05119903116960042,3297.779507183077,303079.9815573123,0.06719507507258103,0.7808929463469343,1.221213737172759,1.1879689990143059,1.0013023741460394,597.3680994160868,54900.672455389606,-0.05119903116960042,"CurrentSlice","Yes",637.7400000095367,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",5,4,"C - 5",1,1,,,,180,0,54,41,153.1737648,0.7871048287103651,0.6379334961051506,1.2276570337250359,0.4553150849842287,5.470673583896024,1.315357379872718,19.880392177218233,49.451655724305965,20482.924489795918,3137446.65821616,0.16369168519647181,8439.757286777285,3402.3106550382086,17978.686673031785,26428669.409356724,1.7694448813166943,3352.8844274867765,32388,67.46124734693876,447.1535395918367,9.224120455169677,5.884375410461425,35.175070524945255,43.64701632629527,4,29.77556114124739,1,48.053703341995,3,39.93864363831264,2,0.16443977813470947,0.08788034376948817,0.7635707344162155,7.211078046157807,164.45436096191406,430.5163879394531,0.002629277529194951,1983,0.56634294095107,6970.377551020408,1067678.9715671998,0.18091535749405188,4100.1016683145735,3939.3018819741656,5895.48768747265,8666366.900584795,1.7694448813166943,1261.048346511371,11550,0.3805824286528777,0.4734015824298581,0.9329446064139942,7.061182970229292,335.03021240234375,58.12202072143555,0.020171117037534714,1721,0.56634294095107,0.6617049923179618,-0.6932854843194414,0.7321023647554259,7.240793572286144,130.05433654785156,341.9398498535156,0.00468798540532589,2411,116,0,171,104,807.6529598399999,3347.0694103986584,11938,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,0.72939888,2.91759552,4.336676607463572,0.889099701794404,1.5611000662173764,0.47918435988550706,0.3516576811984785,8080.638888888889,23576.035820959994,0.15516689789558008,3.158331750451679,7.517643586495556,4.486262610050649,0.9535552385193514,7005.749025341131,20439.941970579646,15.234831899471322,2.4535854329224476,2.5,0.1758483143232696,3722.6944444444443,10861.316633439998,0.06276161400396738,0.9962561949453246,1.4865578738263558,1.237494546195385,1.0044704720120745,1218.4566276803116,3554.9635982343843,0.1758483143232696,"CurrentSlice","Yes",650.4470000267029,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",4,4,"C - 4",1,1,,,,1101,0,26,8,15.838375679999999,0.6007997292462776,0.3399445093500841,1.7525659688131003,0.20256758606785308,2.101854154742174,16.386197938179457,8.076453419663856,18.201005793142457,13269.342105263158,210164.82528959998,0.23606962189507272,624.1402256030475,3586.8897668925642,10299.744939271255,1565561.2307692308,1.8898853007687393,3132.488573585842,18762,359.12774210526317,451.96034999999995,3.9822576564788816,1.353746625137329,-1.5786757848338833,51.4686174165409,4,36.81027714653858,1,48.32155321690995,3,36.81027714653858,1,-0.08137310125085698,-1.2190797729148668,6.665512465373961,5.01476016320733,20.945945739746094,176.9819793701172,0.007028650958091021,222,-0.09727041928717403,8821.25,139714.2714672,0.06419846350626274,305.08309182265145,4667.611307634291,6740.274291497975,1024521.6923076923,1.8898853007687393,566.3106962046202,10152,0.18552647290345803,-0.7413025032592389,6.838642659279778,4.996519447929437,39.90196228027344,81.11764526367188,0.012620506808161736,102,-0.09727041928717403,0.33943896503921417,-0.8862015019677734,6.752077562326869,5.005639805568383,21.74725341796875,296.8516540527344,0.0036465395241975784,182,936,0,244,258,1622.7041083199997,4438.169267321647,22864,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,78,1.619105206153846,126.29020607999999,2.4514834100645433,0.70402885082972,1.5950564598866284,0.4461656737843977,0.5940916821287511,7596.313725938112,959340.0258970567,0.1913787608708921,1.5845337984777537,3.650361556313536,3.9605940975264895,0.9645362642302205,5515.338017436088,696533.1748228621,33.943690079762554,3.4305083452443705,3.948717948717949,0.10511157582263903,3341.809635188476,422037.8275080822,0.07027351455222582,0.9176093982532433,1.1253410642558472,1.1554365070898545,0.9997315431714869,372.21246919657324,47006.789440380875,0.10511157582263903,"CurrentSlice","Yes",599.579999923706,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",5,1,"C - 5",1,1,,,,906,33,25,72,155.04936192,0.6508581254332974,0.35208798764534366,1.624466069937812,0.21560212800923795,6.331408902826912,1.3709694803593704,23.00049103128018,54.71378482769122,25031.157930107525,3881065.0651819194,0.171488022684394,8941.900750506078,3343.448245778339,21948.498670848265,32659366.022222217,3.4861949710487323,4292.543778934928,41807,296.44776209677417,431.2670911290322,11.94361354522705,4.205202858352661,88.36091918979339,30.900415336498998,3,19.54427845900378,1,36.9101858040917,2,19.54427845900378,1,-0.07345792549458592,0.8479694688736932,0.754241819863568,7.222728133408838,162.7450714111328,644.3394775390625,0.0017790545243769884,2283,0.2168303733758397,13275.42809139785,2058346.6547860797,0.1760793347008046,2647.887979934006,3807.9993235158263,11582.287350657109,17234443.577777777,3.4861949710487323,2337.5285462017055,23182,0.5084137455476823,0.8866587405363382,0.8030191351601341,7.175319084743719,286.1055908203125,187.4533233642578,0.006051520351320505,2292,0.2168303733758397,0.4654403427360465,1.4967318400737994,0.7199170424326512,7.256390799450833,101.11311340332031,1042.802001953125,0.0012405510060489178,2440,872,0,106,107,768.1612204799999,8633.992674986435,27791,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,1.8912270959999997,37.824541919999994,1.9182255627488565,0.7514236961132512,1.500335260303475,0.4565408705393178,0.6199823223984356,13821.515239872224,522792.4825884657,0.13411167729613702,1.8744315786002397,8.163240602092758,10.516433967732729,0.9811450660240928,12128.374499131483,458750.20966385776,13.71638227053882,3.2668704197497997,3.4,0.3907583687593855,4893.178625063161,185082.2400257495,0.1031681838677941,0.8361515441932286,1.5873238699235792,1.711652348187813,1.013159008213114,1810.519365803902,68482.0656488215,0.3907583687593855,"CurrentSlice","Yes",612.3469998836517,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",5,2,"C - 5",1,1,,,,1119,28,54,73,261.0205992,0.7498203601893194,0.6754029453987367,1.3076678470333878,0.35961831413225076,7.370486750541289,0.8435688400716064,26.51876166339597,66.1399266209207,16881.643113772454,4406456.60103744,0.19000629049679693,12332.451883306394,3288.674104931486,13976.176683932312,35010322.59325044,2.1553553470384506,3207.6183855387003,27159,369.9871746107784,431.7631051497006,12.218026300048827,8.252090950012207,121.42596984517613,47.322818554965664,2,38.990300427113894,1,47.322818554965664,2,47.322818554965664,2,0.2117022486742618,0.3486498719416935,0.4868506499974104,7.677645833512153,320.0044860839844,296.91162109375,0.003962290473282337,3564,0.30623928294686753,8304.788023952096,2167720.74624096,0.22984131741554492,4836.438568406141,3853.094588492439,6776.811114538242,16975911.841918297,2.1553553470384506,1908.78342028199,16932,0.5667433579301286,0.8565567538149264,0.5732248078692913,7.558326274155466,550.0847778320312,78.75656127929688,0.015722021460533142,3656,0.30623928294686753,1.6550440093601633,3.004872687135059,0.43808590404022296,7.7595614692456865,172.80398559570312,613.649658203125,0.0029923073016107082,4316,1035,0,198,211,1962.4997865599998,4833.873845173623,48866,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,88,1.6802224199999998,147.85957295999998,2.5832732053725986,0.7215282232480916,1.540473357027968,0.4454011619740736,0.5705418368545181,7531.9295036017575,1113667.8799673805,0.19286456231363056,1.5911450823972948,4.9293477258704606,5.085467993974606,0.9643601249436188,6003.952594187903,887741.8666487073,20.468290650882057,3.4985966203349816,4.090909090909091,0.21510759829614345,3889.459741115879,575093.8563665058,0.0907701738633904,0.8164172062566106,1.3386696542661054,1.4107885773050284,1.0022092707027797,983.9933112757367,145492.83080072678,0.21510759829614345,"CurrentSlice","Yes",625.0569999217987,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",5,3,"C - 5",1,1,,,,796,0,64,18,88.15306464,0.5072543294317957,0.3420355250007608,2.0530959316560917,0.14451119740851714,5.367022121850222,4.022270503314057,20.590996793744587,46.73161158628491,22086.286052009455,1946973.8020003198,0.12734677627823318,5657.505257110181,3185.9644664499124,19415.558223263277,16425562.256880732,2.6187241100690954,2812.61732868231,35410,268.5909673758865,450.61964255319145,10.156173069763183,3.473771987915039,5.617752405323495,62.2181727841235,4,48.852346904683216,1,58.47710757340913,3,51.07357319453766,2,0.2671097129919844,3.166638853032067,1.3469029615098727,6.644859405600646,123.41777801513672,491.5306701660156,0.002217810833826661,1125,0.1659370386697898,9353.712765957447,824558.4460814398,0.15968591772917226,1840.4016350719162,3571.8588032974,8039.488912746438,6801407.6201834865,2.6187241100690954,1493.6562072069892,13762,0.3153886618061196,0.34196391746566634,1.3832302198078565,6.629894749193728,136.29562377929688,92.8354721069336,0.012136287055909634,778,0.1659370386697898,0.44311361588370596,-0.018248859853328803,1.2323323776469997,6.712043884094635,61.254112243652344,544.1322631835938,0.0026701525785028934,1338,728,0,294,115,1913.0048625599998,4532.627920910725,25078,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,148,1.5707421827027026,232.46984303999997,2.452800487399291,0.6650897348655366,1.5240008921765644,0.4141812704512973,0.5651902210169286,7550.757109954951,1755323.3201843915,0.19887262890173651,1.3811328049955107,5.745411705552583,5.410456101336887,0.9695694999294178,6236.533256743942,1449805.9073090039,25.37464275788485,2.956865988590596,5.405405405405405,0.05116531030418943,3577.6012878100328,831684.4098369002,0.07038721019140426,0.7370642222402336,1.3395604184382968,1.2887700379890898,1.0007483022940762,906.8734590638555,210820.73068571635,0.05116531030418943,"CurrentSlice","Yes",637.7400000095367,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",5,4,"C - 5",1,1,,,,265,0,68,36,156.40395983999997,0.6480085099774545,0.9428282960298369,1.5358653448422446,0.26201828366281255,6.183160363776653,1.006644548673665,23.018605222732326,55.07296386224,21235.181878747502,3321266.5337587195,0.20014693570465636,7603.751433848755,3402.3106550382086,18604.581878747504,27925477.400000002,2.2134031407425705,4250.15658216236,32097,97.22323091272484,448.05263664223844,8.997808032989502,8.48338801574707,21.35744405081377,27.973230324175212,3,24.67053256743331,2,24.67053256743331,2,24.67053256743331,2,-0.3278504878712979,-0.45521477788110687,0.7345757946845118,7.244496074035749,134.0836944580078,467.7655334472656,0.002591274445876479,2043,0.21558744533310964,8719.263157894737,1363727.2847817598,0.23159553841385846,2833.7184086570596,3939.3018819741656,7576.269824561403,11371981.006666666,2.2134031407425705,2019.3424456247512,15753,0.691621203366714,-0.01939263443756678,0.837549561673519,7.146804863994528,242.30224609375,92.12861633300781,0.013551254756748676,1866,0.21558744533310964,0.6933875624911968,-0.07176832101877473,0.7088323529372601,7.270129947478631,102.75423431396484,416.9101257324219,0.0039258855395019054,2303,232,0,101,67,458.4792959999999,6017.439318181819,17765,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,2.274008272941176,38.65814063999999,1.8671932495390329,0.802502281325098,1.6557492810915786,0.524472112957449,0.7273349474164631,8703.454311895926,336459.3608430871,0.22028842075966681,2.377784687648989,7.614615114607778,4.832041401012505,0.9576791906864789,7560.460978562593,292273.3638125047,10.82878432963042,3.3801662105927535,3.411764705882353,0.09324524409621697,4758.974141975894,183973.0916826274,0.10880941262640713,0.8826586835234055,1.8090831528837126,1.5819736575395742,0.9956063776107041,2128.374141975894,82278.98691504342,0.09324524409621697,"CurrentSlice","Yes",650.4470000267029,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",6,1,"C - 6",1,1,,,,135,0,75,46,242.47302767999997,0.721363786865008,0.9330429229266456,1.3401252751584505,0.3438853633658616,7.191417368554633,2.203536873459597,25.60111313204955,64.99193710364632,16846.718951439623,4084874.9506295994,0.1685779029324787,13730.187588503344,3014.922185328091,14383.922900284138,33471388.58896119,1.631624484765831,2839.9845521265383,26630,56.19744082509669,445.11401100128916,10.516142404174804,9.8120122467041,-20.986592266435306,57.12961821799021,3,48.000564324571236,1,78.3389152726675,3,78.3389152726675,3,-0.1978541213715299,0.1995366713374782,0.5331556517176864,7.5956197687278175,312.9043884277344,291.11822509765625,0.003929464146494865,3138,0.2496626178268616,3377.5706918779542,818969.7918628798,0.24568146383427278,4768.627027988334,2070.066196856993,2676.816148463101,6228951.177473636,1.631624484765831,829.8065117843133,5922,0.14521956766606145,-0.08504246205888943,0.7573506503963395,7.302263072860648,779.56201171875,15.531645774841309,0.08731364458799362,2765,0.2496626178268616,0.4560343959326853,0.06359482840612252,0.5013916156610734,7.641211591557988,243.61912536621094,172.20542907714844,0.008395963348448277,3169,0,0,343,125,2190.90583584,1839.585560734329,10231,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23,1.023876688695652,23.54916384,2.383164188801673,0.6382272123347692,1.3460786723010745,0.4212912542255442,0.4391941484009968,4417.917191529548,104038.25577488198,0.19879951211463986,2.185865330273158,6.304514516596008,5.711749819690042,0.9816460859363285,3717.162648114695,87536.07222038122,19.453402287656864,4.844338371445501,3.652173913043478,0.16050149460747953,3033.9953175511246,71448.05282280425,0.07436551693636223,0.8986000436720355,1.2319312092967039,1.1836843499089156,1.003518148272205,571.1992663956389,13451.265109638705,0.16050149460747953,"CurrentSlice","Yes",1171.986999988556,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",6,2,"C - 6",1,1,,,,921,0,23,8,14.066978399999998,0.652987361290687,0.3683362838326519,1.663400971202783,0.2327869627131416,1.9297851786753775,28.148289744790965,7.108932578102003,16.45329765520842,13828.22962962963,194521.40751023998,0.25032983768374156,639.2029611526331,2987.029233728201,11088.163873818841,1496902.1229655435,1.8869851923099374,3461.6184786386907,19884,300.7013511111111,451.9917333333333,3.6222307548522945,1.3341990154266357,-1.8232748241312597,95.03800482582938,3,68.51758103892456,1,89.82033023944436,2,68.51758103892456,1,-0.10471034661283346,-1.207327130799926,7.517146776406036,4.895005931319023,18.594470977783203,193.62672424316406,0.00660017691552639,217,0.021329445704792473,3818.5777777777776,53715.85111871999,0.061811291245115425,281.95645774469045,2023.6395035529117,2947.698565976569,397939.30640683684,1.8869851923099374,236.03122316434786,4392,-0.2027331933947536,-0.47839818172304405,8.285322359396433,4.82951693642655,31.94915199279785,19.20339012145996,0.054491523653268814,59,0.021329445704792473,0.8446023365042931,0.16286354703245864,7.846364883401921,4.864199389960803,22.268293380737305,154,0.00667485361918807,82,839,0,119,330,2455.9902288,1839.7242681374628,21855,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,116,1.039303576551724,120.55921487999998,2.3758499426333723,0.7063343957552168,1.2524082854764729,0.49419851321284075,0.427390256792313,4772.57149737824,575377.4726825865,0.3037080204081583,1.9457377161752318,5.480176163014961,5.349375898420822,0.9460172992458978,3901.6922855770313,470384.95865251956,35.720477282406435,2.967036155959016,5.258620689655173,0.022582308004423072,3027.9140951436093,365042.9460345991,0.07039785448422077,0.7274426957919181,1.105051617364433,1.1265235041937216,0.9992873243352943,287.8483393328206,34702.76979447668,0.022582308004423072,"CurrentSlice","Yes",1184.6539998054504,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",6,3,"C - 6",1,1,,,,93,0,41,21,72.10628928,0.7747949716400183,0.6047347012618972,1.2675690374132984,0.42083373516131006,3.814015477092118,3.9279839766419133,13.680018736829274,34.19779531041684,25177.799132947977,1815477.6677140798,0.1427319117917777,5940.144841910044,3257.109326271211,22528.840116554537,15589957.36065574,1.8602754009621523,3593.6754049550273,35199,36.9606,450.0307803468208,6.52730761642456,3.9472894214630125,9.171490329361262,7.186462887861129,1,7.186462887861129,1,7.186462887861129,1,7.186462887861129,1,-0.5946557400387139,0.9276823441820605,1.536970830966621,6.49551301350114,78.49534606933594,634.6907958984375,0.0017694180132821202,967,0.5341129528462017,4312.796242774566,310979.73348719993,0.20460311165130388,1794.9601732200852,2318.3643887049984,3607.3044394958774,2496254.6721311472,1.8602754009621523,882.4115311897284,7269,0.13808750564938543,0.3910119148223652,1.783387350061813,6.383553279080191,138.4725341796875,24.28388214111328,0.05194682255387306,546,0.5341129528462017,1.8762155196714179,6.719169549348457,1.5620301379932509,6.484740296811308,90.3259506225586,176.1180877685547,0.007077771704643965,813,0,0,178,98,1252.16947728,1815.292751934759,14741,1,0.20839967999999998,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,8075.5,1682.9316158399997,0.015148222790573056,0.9041898065209601,2.388390303030303,3.2277417476756205,1,4694.352459016393,978.3015502662294,21.134560195900537,,,2762.5,575.7041159999999,0.007423021413361042,1.060216456862143,1.0428624916066627,1.0299815033665034,1,113.54098360655735,23.661904650491795,1,1,42,1.1958172114285712,50.224322879999995,2.164608183745814,0.7498980122376742,1.3664266295471477,0.5174368873843972,0.47144318027139387,3211.5907120425295,161299.96888003306,0.284740595522829,1.74574433901725,4.552272183910638,3.457990157635064,0.9510147103685092,2506.098908763841,125867.12076297078,23.53556222452204,3.534087264921024,4.428571428571429,0.08846372457609801,2897.0710732841367,145503.4329909306,0.08617693261382173,0.7907774338880891,1.093663984740881,1.034162784959893,1.0001994769801872,248.11205689069402,12461.260055699144,0.08846372457609801,"CurrentSlice","Yes",1197.3469998836517,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",6,4,"C - 6",1,1,,,,866,0,46,33,117.85001903999999,0.7974920605675984,0.9996950007803301,1.1168611220265907,0.6634235188125184,4.576932091300841,10.120728177289552,15.846817169387673,43.092984827691225,14455.334217506632,1703561.41276272,0.15257471989188479,5369.7021510355535,3273.045005752546,11777.478451646133,13320328.128811777,2.2358975919241866,2205.518569179652,19818,287.8006026525199,448.4753729442971,6.473868001556396,6.471893476867676,22.512985211015188,78.87802922353677,3,63.74290935030533,1,78.87802922353677,3,63.74290935030533,1,-0.25601496825938447,-0.02310710477325273,1.0201999591920017,6.92574561317826,164.25521850585938,218.9499969482422,0.0051202853210270405,1340,0.22783643669757928,5721.224580017683,674246.4256871999,0.15576836124092935,2763.2078570878534,2558.8043927781446,4861.2056525728885,5498023.593059937,2.2358975919241866,891.1857771206788,8616,-0.02323590511428763,0.6289666669500065,1.2062594153511559,6.796996619322291,300.7383117675781,39.0797233581543,0.02937718667089939,1154,0.22783643669757928,1.4201849574244954,2.0963257552790235,1.0389622572920845,6.912563084532171,149.12789916992188,122.97122192382812,0.010754590854048729,1251,839,0,166,314,2717.0108279999995,2488.3214956855227,29746,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,136,1.6970782764705878,230.80264559999998,1.8589468861299736,0.6967944089160644,1.4296590817233705,0.4961796401205298,0.5894033882308293,4307.656931476521,994218.6161219589,0.22047199010239332,1.4529994466942018,5.008793171884036,4.059147973390216,0.9716239036280233,3447.6380040317263,795723.9724016257,41.53402183110965,3.333587358632843,5.220588235294118,0.09949337060886845,3189.5966754751917,736167.3510966387,0.07367061046350817,0.8142150707097255,1.1911009980966065,1.1400911706316268,1.0015689684790574,511.7409096146939,118111.15580082181,0.09949337060886845,"CurrentSlice","Yes",1210.0139999389648,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",7,1,"C - 7",1,1,,,,587,0,62,28,67.20889679999999,0.32616613958898466,0.9350818464561087,3.067526054908283,0.10612177964324787,5.728192153846828,0.575213139429162,21.043985363994146,50.886066207031575,52324.87441860465,3516697.0848729596,0.1997535914246324,3228.0382910037733,3508.7543734698215,49211.94108527132,31741702,3.8825552433466792,10452.081585959153,65535,200.7360576744186,449.44970418604646,8.368397042083739,7.825136157989501,23.57500611620453,21.51517337643223,2,21.51517337643223,2,21.51517337643223,2,21.51517337643223,2,-0.6968742279191609,-0.5488079678413635,1.6994171023376,6.423830732836562,35.83256912231445,2637.65966796875,0.00046182257938198745,1093,0.8340992921934361,8262.448062015505,555310.01911536,0.22091907101839994,1587.2037711712248,2128.095427920673,7617.514728682171,4913297,3.8825552433466792,1825.3323501982443,12711,-0.2661821664541842,-0.7383531776195404,1.747491136349979,6.385143448340192,108.91557312011719,68.35225677490234,0.01802835240960121,687,0.8340992921934361,-0.13837255217894734,-0.6441818892861719,1.6369208581215071,6.430563032299404,60.395545959472656,790.423095703125,0.0014184231404215097,943,551,0,128,63,325.52030016,4370.326504481434,12711,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,0.31259951999999996,0.6251990399999999,3.2340725067158833,0.5627174984169148,0.9308423232128326,0.5000000000364935,0.2152000000086317,6715.833333333334,4198.732552799999,0.12020072590748035,1.6405670979274736,10.413221004755016,7.843618332019542,0.9760479503143165,6070.900000000001,3795.520851936,15.21762631371937,3.9270314895605303,1,0.107722192661873,4034.5,2522.36552688,0.038485682053950844,0.5965056174023867,1.2960444596736198,1.367469132551091,1.001348193371649,921.5666666666666,576.162595296,0.107722192661873,"CurrentSlice","Yes",1222.7200000286102,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",7,2,"C - 7",1,1,,,,995,0,75,17,108.88883279999999,0.4802747008548991,0.23929431958091862,2.405883338293687,0.0973299919649655,6.457122685634426,18.619549530829712,23.965590292750978,53.376703448350874,27199.078468899523,2961675.9077140796,0.2016661004350077,9493.455001269436,3323.9554428139477,24417.954807478534,25516762.77381507,3.575004267289532,5485.132090248747,41694,332.23533588516744,450.6445538755981,12.561794311523437,3.005966022491455,-2.240793123061967,34.25761387358165,2,22.87025842779543,1,85.2101465680331,2,85.2101465680331,2,-0.3352794397240122,-0.12967755217166443,0.9990613767999817,6.922086304027235,82.67557525634766,751.7124633789062,0.0016234262147918344,1572,0.16201500456499063,6703.953110047847,729985.62929904,0.18316272129257766,4257.0629398599995,1875.2294008114839,5923.040362119735,6189577.178415122,3.575004267289532,1227.914295054203,9120,-1.267763166469797,1.4434729855824635,1.2206680249994277,6.774131783103788,165.07472229003906,43.73847961425781,0.029997311532497406,803,0.16201500456499063,0.4208663107705809,-0.3027280737829292,1.035690574849477,6.895554354532118,73.23422241210938,359.3388671875,0.0037498269230127335,1204,331,0,782,230,5635.752546239999,1743.3808194357134,13203,2,0.26049959999999994,0.5209991999999999,6.981317007977318,0.5,2.552544006104083,0,0.29457772026774176,6547.25,3411.1120121999998,0.11155797760643169,0,0.8115199489452005,1.9436592166164446,0.9535479737305783,0,0,136.41292599914973,146.43890576605656,1,2887.25,1504.2549401999997,0.06462441124433575,0,1.0381595180578151,1.051776348873537,0.9657363524662101,106.12633857901119,55.29173749859396,0.24788981148682684,0.24788981148682684,377,1.5696310115649865,591.75089136,2.7565444059364923,0.6598344935566325,1.7013617975574487,0.37278995996444275,0.5909681169013501,2642.6717762345947,1563803.3791587357,0.23642454793925252,1.6221820179576145,3.3840807225212157,3.2427924540137356,0.9659498273909943,1861.7590283064824,1101697.5644978883,124.64412915188686,3.259313589137943,4.684350132625995,0.03689097696236655,2971.2873559839713,1758261.9413902124,0.07025535629995458,0.8612529861843857,1.0683765692266343,1.0466960263435818,0.9987438518470497,190.16369456298253,112529.53576195569,0.03689097696236655,"CurrentSlice","Yes",1235.3769998550415,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",7,3,"C - 7",1,1,,,,580,10,69,21,116.39122127999998,0.5494000870201748,0.31268440637486933,2.0280556077863,0.13310903722854495,6.129289049484874,3.835697200269369,22.186483366229986,51.59655227595509,27209.315129811996,3166925.4181512,0.20318785051132807,9172.907428585379,3275.024471379543,24554.36104159946,27427221.283466596,2.7318976199708587,5528.602255111857,40272,198.2948551477171,446.4335559534467,11.699916439819335,3.6583814266204833,-4.636500049301336,71.83465178638481,3,52.92277954373336,1,72.87284145303593,3,52.92277954373336,1,-0.3231983426673702,-0.45827427800593457,0.9433440544879373,6.981941830746693,92.10272216796875,760.3975830078125,0.0016028423560783267,1801,0.28762720762260896,5158.9427036705465,600455.6417937599,0.28399436505343556,2884.8083715308417,1888.4099704020305,4433.7941351897625,4952548.049006965,2.7318976199708587,1465.110657475971,11952,0.47134044332557357,0.7160022403378883,1.1292878273351772,6.845702185521667,304.5885925292969,32.98017501831055,0.04283444210886955,1614,0.28762720762260896,0.9433260865699001,1.3045410325149591,0.9818151799046078,6.951383092264837,129.31846618652344,125.71974182128906,0.013113172724843025,1570,359,0,396,78,1747.2229171199997,2208.142891221374,13916,1,0.10419983999999999,0.10419983999999999,12.566370614359172,1,3.1415925460576575,0,0.2282540689670175,6208,646.8726067199999,0,1.1411764705882352,1.5264133824844999,1.7026944055429105,1,2140.949703378901,223.08661654012894,21.541655980566365,,,2597,270.60698448,0,1.0256714060031595,0.9781713407136341,0.9454333889856942,1,0,0,0,0,77,1.5927689828571427,122.64321167999998,2.3332503515135543,0.6764727448178834,1.4586379303260546,0.43722728991902393,0.5567671821422718,4234.515865177615,519334.6256152965,0.20432547995515488,2.0291864775148936,5.839514892857196,4.924095848312051,0.9727926270360843,3509.3672966968306,430400.0762316587,34.073089049262975,3.367338584349744,4.961038961038961,0.12939233612069348,4159.324316173747,510112.8925542681,0.08748221170376676,0.9761446976383362,1.5666275867595278,1.4834911400148811,1.0001914988560727,1504.3702279612116,184500.79631293673,0.12939233612069348,"CurrentSlice","Yes",1248.0639998912811,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",6,1,"C - 6",1,1,,,,598,0,4,3,1.14619824,1.5596762428619322,0.854438241420097,1.0102191475133357,0.6649822742139706,0.42928699063572234,49.816518787881215,1.1638719517197755,3.038908137934035,10440.90909090909,11967.351623999997,0.1969363583344608,39.031506595603,3014.922185328091,7744.719512195121,85191.91463414633,3.700452589299978,2056.194614064802,13391,193.4745818181818,452.53625454545454,0.6498836780548095,0.555285467004776,15.454085153809768,80.19121428873775,3,58.94245875156326,1,98.21005235534732,2,98.21005235534732,2,0.16569302257465554,-1.382141356075553,90.9090909090909,2.3978952727983707,3.8888888359069824,120.66666412353516,0.009707337245345116,18,-0.7847496609040833,7660.181818181818,8780.086918079998,0.0314560754472556,31.491561166518924,2070.066196856993,6397.266075388026,70369.92682926828,3.700452589299978,240.95925721242284,8055,0.15680808616975156,-1.0949132758977107,90.9090909090909,2.3978952727983707,7,64,0.015625,7,-0.7847496609040833,0.18091202549776264,-1.4510987576130077,90.9090909090909,2.3978952727983707,7.142857074737549,184.42857360839844,0.005451377481222153,14,512,0,125,139,1036.6842081599998,2681.2119811036287,18552,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,96,1.071304605,102.84524207999999,2.8796459469522975,0.6909847625682137,1.4989563174985896,0.4003260291180868,0.46095807758468554,4071.6096910297188,418745.6843292254,0.23250205898411794,1.2746228642621777,3.2239757198865875,5.264022594895141,0.9741357789681468,2808.693948235927,288860.8090349549,27.696654068938244,2.908428348993434,5.3125,0.1421453880208783,2935.2764469247145,301879.21675569454,0.07386127591597369,0.7683290101753043,1.0886758372253578,1.1451701236261007,1.0016054827314484,239.0868682107457,24588.946839283195,0.1421453880208783,"CurrentSlice","Yes",1171.986999988556,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",6,2,"C - 6",1,1,,,,1437,0,37,21,58.351910399999994,0.7606665772381344,0.6742793910338017,1.2080584991435224,0.5549390876243581,3.3495124502951388,6.241349855274664,11.638719517197757,31.048119724218942,16534.355357142857,964811.2223217599,0.1778435867427228,3042.24742643084,2987.029233728201,13855.440243271221,7759046.536231884,3.416504373504854,2940.529061193039,20818,470.12592,450.2420164285714,5.552011248779296,3.7436067638397215,8.130838465719053,83.47607090697089,5,66.94768308594425,1,67.22299105168823,2,67.22299105168823,2,-0.9839077413312646,0.11978931922643143,1.913265306122449,6.278426270832055,64.70813751220703,258.9662170410156,0.0046640424989163876,651,0.5617205240994186,6913.773214285714,403431.87512591993,0.15554325990471435,1707.376428047807,2023.6395035529117,6055.494746376811,3391077.057971014,3.416504373504854,1075.390823991895,10175,0.029415452593733345,-0.23734236487157068,2.0727040816326534,6.219620437629757,99.25160217285156,56.43283462524414,0.02012774348258972,469,0.5617205240994186,0.979371384805463,0.9371014094777501,1.8813775510204083,6.29080389905634,45.18313980102539,396,0.0031900322064757347,688,1405,0,122,180,1438.3745913599998,2456.122935381049,15049,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26,1.4708208184615383,38.24134127999999,3.0975665646161965,0.6440601164358614,1.538279808839839,0.40081352199128717,0.5418154702989958,5415.177301837374,207083.64329127257,0.17570685704917677,2.355442576139613,6.309347728401988,6.0696458837835126,0.9770424997125329,4556.8988339284715,174261.9234866927,18.162949733146505,3.5548900495820708,2.3076923076923075,0.1273455674932376,3352.315437523498,128197.03872454858,0.07778153064962544,1.0121479561207394,1.2513705343498724,1.2472157449574435,0.9973872564211922,673.4003236518624,25751.731594833323,0.1273455674932376,"CurrentSlice","Yes",1184.6539998054504,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",6,3,"C - 6",1,1,,,,987,0,19,15,17.818172639999997,0.7200864565734584,0.5722070449645343,1.298192083273403,0.46391556970590153,1.9187178625586596,1.2619982765577409,6.908221675655754,17.63373020694456,37497.14035087719,668130.52027824,0.14751392564720975,515.9780444154512,3257.109326271211,,,4.917623028031192,5531.350373702287,49690,322.05246315789475,451.0271087719298,3.3336860183715817,1.9075586254119872,40.28374155101603,5.00148639397883,2,5.00148639397883,2,5.00148639397883,2,5.00148639397883,2,-0.9049449643836528,1.3352789621723078,5.916350330016074,5.133556571934707,17.382671356201172,1399.0396728515625,0.0008000886882655323,277,0.1694145059292785,11400.842105263158,203142.17287295999,0.09556341138955557,305.1281342293504,2318.3643887049984,,,4.917623028031192,1089.50336429263,16207,1.3762282779625408,3.5823116348752624,6.1899387845832905,5.101128633662897,31.30137062072754,143.6643829345703,0.007390071637928486,146,0.1694145059292785,2.079471920591186,3.6948791323270456,6.053144557299682,5.117342602798802,20.492647171020508,1044.06982421875,0.001262062811292708,272,957,0,56,16,49.07812463999999,8208.753715498939,16207,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1197.3469998836517,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",6,4,"C - 6",1,1,,,,1404,0,44,60,201.52249055999997,0.7453875742179071,0.7788700061140921,1.1887558764720216,0.5355757944099779,6.174732541390197,2.752557547199785,21.70214912860014,58.2875255173614,27020.74922440538,5445288.680499359,0.15946880654214526,13223.609344970237,3273.045005752546,24134.889025400404,46676875.37512438,2.2295589247589103,4308.966630690523,38830,459.13943702171656,444.61677518097207,9.74579455718994,7.590707066345214,104.53089060791454,38.7424371896583,4,31.925382042930117,2,36.63691851460093,3,31.925382042930117,2,-0.34184967812965317,0.426755143065793,0.5796239716219526,7.485264882124095,198.03575134277344,733.8067016601562,0.0015420118579640985,2825,0.49638093626424473,5705.005170630817,1149686.8506431999,0.2558629792091169,3103.2300516286427,2558.8043927781446,4415.760892023852,8540081.565174129,2.2295589247589103,1459.699619361017,11372,-0.221341448684836,-0.2978212541020304,0.7229258391447231,7.3180183503342535,420.39501953125,39.60104751586914,0.03446901589632034,2291,0.49638093626424473,0.16131848555767367,-0.7794997250520264,0.5689298024038354,7.498708416140479,132.03343200683594,349.6927490234375,0.0056743617169559,2812,1350,0,138,188,1157.6602223999998,3929.665796579658,17179,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,70,1.847314306285714,129.31200144,2.4161328987565702,0.6641281435119116,1.4801489315151457,0.4758466159941055,0.5954003830892189,5542.627756068152,716728.2883740688,0.19328606396294265,1.4430770503692252,4.299129224802136,5.222873265255299,0.9758603113948945,4253.383477461187,550013.530362333,27.19064264622207,3.3315207710715926,4.257142857142857,0.08883339677835535,4185.235735620576,541201.2094713072,0.085310441926769,0.8212061556655629,1.4502558845586548,1.4959729378580777,1.0042639868744678,1299.3755366156006,168024.8512619373,0.08883339677835535,"CurrentSlice","Yes",1210.0139999389648,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",7,1,"C - 7",1,1,,,,1282,0,32,30,75.33648432,0.846536305724795,0.7233604249415022,1.0840019845692066,0.6850902067931934,3.605186855359543,23.03403376973304,12.359488882635882,33.441427862152985,20059.539419087138,1511215.1769124798,0.16303044883191242,4619.196242356262,3508.7543734698215,17280.54308453199,12493832.650116628,2.794250416241846,3270.315714855216,29299,418.34790705394187,448.70092946058094,5.843766204071044,4.227149204635619,133.50086910649105,38.38905159670363,4,24.402099566875023,1,38.73104283259709,3,24.402099566875023,1,-0.0448741109348261,0.5519718084343408,1.5017341681827485,6.523969214973818,95.48439025878906,407.2223205566406,0.00279486202634871,1057,0.07366348135798853,5946.4315352697095,447983.24611679994,0.2868115842982161,1995.3185857513813,2128.095427920673,5315.510508945151,3843114.097967344,2.794250416241846,1705.505449551579,12670,0.09585975785474272,0.08703568259300631,1.5591252828903694,6.496401622720094,121.13664245605469,41.60248565673828,0.037509091198444366,805,0.07366348135798853,1.4431426243851666,1.4243009977922192,1.4519952021028104,6.550089371145207,43.626983642578125,572.0982055664062,0.003518759971484542,1008,1201,0,181,626,4830.1835832,2213.8185309028154,40616,3,5.97412416,17.922372479999996,1.2198797018166705,0.5216155594417001,1.6177912980949138,0.40335545085318225,1.1640476430867241,9382.708119489407,168160.3897886095,0.21670050431918672,2.221735647290627,3.4867913783664215,3.5327909219507285,1.05401971399464,6691.779095830627,119932.5575093541,107.39982760370177,82.60663455596531,2,2808.2712418300653,50330.88322095058,0.08216119150675853,0.9921668279770683,1.0105343454076932,1.0211675168824297,0.9884897664429264,29.27490727491704,524.6757924985249,-0.1583324213618435,-0.1583324213618435,10,0.718978896,7.18978896,4.489320094022381,0.7657432667309478,1.454143548891076,0.4605362472667851,0.3389740297249638,9845.284821428571,70785.5201171627,0.14919759200455054,4.107588559665614,15.604623099633326,11.498596328474134,0.9827451418334938,9214.363795104013,66249.33108746253,18.521900133712997,8.254583677808407,2.4,0.19252861232406432,4183.935595238096,30081.613951993884,0.10888168320569527,1.0431299384310386,1.5055563561611696,1.4181194148146912,1.0125501283105767,1404.9392606829474,10101.216785928817,0.19252861232406432,"CurrentSlice","Yes",1222.7200000286102,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",7,2,"C - 7",1,1,,,,24,1,7,5,2.8133956799999997,1.1642661024177179,0.8122490245858645,1.0930054852128228,0.5915234786435865,0.6995787995573722,9.420204437776265,2.0415664574047057,5.510540689670175,2779.5555555555557,7819.989592319999,0.03230051386413397,27.93305158005955,3323.9554428139477,258.0786324786327,6968.123076923082,0.7695256038608286,89.78107275835282,2917,8.73951111111111,451.9319555555555,1.086037988090515,0.8821332964897155,-14.969042916248666,66.40795081409279,3,42.667947776253925,1,42.667947776253925,1,42.667947776253925,1,-0.8278458394757019,0.2937240308710325,39.78052126200274,3.2444926304072963,12,9,0.1111111119389534,12,0.11185608000132985,1443.037037037037,4059.8341660799997,0.041778165833440614,27.157950630878904,1875.2294008114839,450.4062678062677,12160.969230769228,0.7695256038608286,60.28744063713012,1607,0.4914802452074698,0.6184304091422361,37.03703703703704,3.2958368660043296,12,4,0.25,12,0.11185608000132985,0.355551089717974,-1.1936877988603283,37.03703703703704,3.2958368660043296,4.3913044929504395,1140.1304931640625,0.0009194743470288813,46,0,0,41,61,128.79100223999998,1434.8276699029127,3703,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1235.3769998550415,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",7,3,"C - 7",1,1,,,,23,30,27,26,44.38913184,0.7615711718789584,0.5122372226258182,1.2557935980609112,0.41548149490078445,2.978567917940656,1.9903909421218942,10.730369201476712,27.06375227595509,45697.35211267605,2028465.7876684798,0.2708007245481981,3659.7322658703497,3275.024471379543,43001.870501467645,18318796.833625216,5.090897648611533,12374.876062046806,65535,11.764771830985914,439.25350985915486,5.302015612792968,2.7158897518157956,45.38964594050685,40.43354449619422,4,27.724940562243468,1,37.97434150785905,3,27.724940562243468,1,-0.25553769629265677,-0.6236570459832085,3.680927505565474,5.947050346464309,19.74698829650879,2086.5595703125,0.0006800400442443788,747,0.7443313404308245,9613.701877934272,426743.8801300799,0.4529065107776508,1201.449367861152,1888.4099704020305,8857.658095097144,3773362.3485113834,5.090897648611533,4354.10817319176,20419,0.25212533936914866,-0.7128992694456806,2.4245630276179773,6.035711721637613,43.18702697753906,116.59275817871094,0.022526204586029053,663,0.7443313404308245,0.7319975614839891,-0.3395268575267756,2.3915008045140955,6.04344842789584,18.293960571289062,1059.197265625,0.0022993329912424088,745,0,0,138,84,797.44137552,3754.142427806089,21801,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,1.7192973599999999,41.26313663999999,1.5940932990832544,0.6496527598036349,1.4349003643941007,0.4751604420609823,0.5987342839336735,6170.956848383224,254633.0356343807,0.19519980675627277,1.9466050456542343,8.16216863159182,7.175881249405146,0.9736025654123953,5414.913065546096,223436.2977173498,13.08897842468087,3.124691686755109,3.4166666666666665,0.18772393605059165,6551.305828956294,270327.427590652,0.0898726248598436,0.9415776943903086,2.430476914297809,2.336630523133875,1.0011962967419592,3855.824217747888,159103.40155675221,0.18772393605059165,"CurrentSlice","Yes",1248.0639998912811,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",6,1,"C - 6",1,1,,,,1416,0,25,32,70.334892,0.833660258070664,0.7482638179675508,1.0779147419540083,0.7056592245040946,3.473662963269879,5.883488725068563,11.130750637760238,32.56085462074667,21409.17925925926,1505812.31100864,0.18112671139881506,4372.1370122356375,3014.922185328091,18811.37087602573,12697675.341317367,3.160586706665444,3877.7742329773496,32951,461.03252444444445,448.3376373333333,5.5614824409484855,4.161456084823608,85.78423886739499,39.81927370647198,2,39.81927370647198,2,39.81927370647198,2,39.81927370647198,2,-0.17115160047261851,0.14356077980256599,1.5692729766803841,6.473637302394905,73.08222198486328,468.465576171875,0.002513234969228506,973,0.2186057732401502,6542.6237037037035,460174.73159663996,0.20762616723617083,1330.8477984115766,2070.066196856993,5565.144661787535,3756472.6467065862,3.160586706665444,1358.4198832685206,13983,0.35882578666470993,1.4894730131274798,1.7316872427983538,6.400205007688644,154.87271118164062,49.22031784057617,0.025017118081450462,817,0.2186057732401502,1.011591380882073,-0.12375840443590791,1.5122085048010974,6.500336304905361,33.29179382324219,841.1914672851562,0.0034614771138876677,987,1395,0,66,197,801.7135689599999,3601.253574213673,29271,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,52,1.4527862307692305,75.544884,2.7826805590668857,0.6515531510188723,1.4505679448531938,0.41495103776710374,0.5192359230449097,5825.53356642913,440089.2575139948,0.19115901963952625,1.942804060488593,5.959752911949134,7.531601172028742,0.9645472815491108,4848.0545245129615,366245.71668000676,23.291257329067548,3.1303950421961177,3.576923076923077,0.1458306385651707,3648.16831630462,275600.4522677078,0.09677843567997471,0.8636626222031255,1.4043254074666152,1.423298090429756,1.002940414637747,1050.3599330710872,79349.31930210303,0.1458306385651707,"CurrentSlice","Yes",1171.986999988556,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",6,2,"C - 6",1,1,,,,227,10,22,83,148.27637231999998,0.5023581472225787,0.2632483161271491,2.3676473026181686,0.09925514466187713,7.474885397129176,5.632873038282008,26.628554433164407,60.90236855182316,23272.13281799016,3450707.4304007995,0.18317328134473487,10515.264501275513,2987.029233728201,20672.710006930254,29417266.33986175,3.048184844933492,4262.832932161749,34816,76.67033085031623,436.6542594518622,14.457243196105956,3.805844927215576,86.27070943512778,29.083680835915562,3,18.225133269979974,1,18.225133269979974,1,18.225133269979974,1,-0.4813757366025034,-0.1095998999632779,0.7866942495267735,7.1801411252678085,153.72946166992188,553.2910766601562,0.0021318402141332626,2240,0.27147389718480586,6168.427266338721,914632.0179724799,0.2798972414389929,3197.6852854335043,2023.6395035529117,5192.169777859458,7388457.593894009,3.048184844933492,1726.525775865276,11557,-0.30455293937951305,0.10626721102465053,0.8874385225358519,7.090127470008811,323.58001708984375,46.33768081665039,0.03493538126349449,1993,0.27147389718480586,0.9671097928802127,0.9556538629966389,0.8074357174992308,7.160895806118963,180.0957794189453,163.94827270507812,0.008426941931247711,2088,208,0,142,391,2065.7618279999997,2990.73447667087,11721,1,3.9595939199999997,3.9595939199999997,0.7118866858653875,0.7616880317702363,1.344417552305614,0.3980372009940405,0.9204548140491158,8410.342105263158,33301.53946512,0.11668416678710981,1.2085537666841166,1.506271989785747,2.9403031158528083,0.9716247014162049,2826.7940061848176,11192.956359981845,21.305067853071943,,,2874.7894736842104,11382.99892128,0.02537559874309342,0.9941377806645688,1.1059337717021966,1.075697839815111,1.0014475074595959,275.36666262430253,1090.3401630978794,0.3066544952402471,0.3066544952402471,62,0.9562856283870967,59.28970895999999,2.3586373192750614,0.658464064261571,1.2270576694765658,0.4562821464468123,0.41020134094119487,5310.832642613238,314877.7217158066,0.2005480878368941,2.2086941662987414,5.439991708423191,5.952690316855043,0.9793324823778997,4334.575154133975,256995.69935385048,44.49806940710281,3.0053727809889055,3.5806451612903225,0.15546785039938144,3048.4813275292704,180743.57067920486,0.08045593056804001,0.9656028595708246,1.1727531644943363,1.1341754619344722,1.0006077787025343,449.05851646936253,26624.548747477867,0.15546785039938144,"CurrentSlice","Yes",1184.6539998054504,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",6,3,"C - 6",1,1,,,,1008,0,16,5,4.89739248,0.5139504686721267,0.2907070972489984,1.9966178750943342,0.1562696393121632,1.2474983788317742,3.5155903145142844,4.852748070938774,10.942756965538246,15689.297872340425,76836.64941648,0.1329723185723251,151.75429089382268,3257.109326271211,,,3.541978036191161,2086.2423148569537,18837,328.1639744680851,452.3595574468085,2.3993627311706542,0.6975117748260498,0.14401765375946746,13.676721760646839,3,15.881340191780977,2,15.881340191780977,2,15.881340191780977,2,-0.976410843937819,0.45117247724834186,21.27659574468085,3.8501476017100584,10.565217018127441,247.52174377441406,0.004437521565705538,69,-0.07760946585634156,8211.595744680852,40215.407248799995,0.04807176603920103,64.49674195306625,2318.3643887049984,,,3.541978036191161,394.7459094467967,8818,-0.1111860000251485,-1.2676307702838518,21.27659574468085,3.8501476017100584,16.515151977539062,72.24242401123047,0.014035026542842388,33,-0.07760946585634156,1.7734242173165609,2.6414351210814795,22.181982797645993,3.82065197700538,7.676470756530762,297.058837890625,0.004193158354610205,68,1008,0,38,24,56.68471295999999,6176.408088235294,10358,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1.9797969599999998,1.9797969599999998,0.9739898868533605,0.811999819992638,1.2531560826559354,0.5376856395251879,0.6283808968972018,9569.947368421053,18946.55270736,0.0674054779437155,1.7982650171230108,,10.30417222375108,0.9846840987802007,9569.947368421053,18946.55270736,5.258608015709868,,,0.6466578589426211,4256.368421052632,8426.745260639998,0.06960047073431497,0.8570559029949857,,1.5193889651941643,0.9860420711014332,4256.368421052632,8426.745260639998,0.6466578589426211,"CurrentSlice","Yes",1197.3469998836517,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",6,4,"C - 6",1,1,,,,1551,0,20,10,15.213176639999999,0.7836916953125364,0.49622942204287285,1.31790915921893,0.3961146156105678,1.7863343917088579,8.23350719531377,6.167085340742415,15.618605793142457,29208.753424657534,444357.92528351996,0.23641280564041076,1226.8827086705544,3273.045005752546,26356.253424657534,3848013,2.5490768499166854,6905.3233463822435,41371,503.62990684931503,451.75196712328767,3.2106199344635007,1.5932040744781493,-1.0404225034787593,50.606560813722254,3,31.094142770657566,1,38.675979966368416,2,38.675979966368416,2,-0.2489988718728114,-0.9755331216315914,6.8493150684931505,4.983606621708336,12.290566444396973,861.562255859375,0.001486180699430406,265,-0.11056522066426144,6522.58904109589,99229.29923231999,0.17476384979358947,301.7719158742755,2558.8043927781446,4968.58904109589,725414,2.5490768499166854,1139.9127714433948,9230,-0.04607028116427166,-0.22756957358788377,7.130793769938075,4.955121121137379,21.040403366088867,49.60606002807617,0.02354789711534977,99,-0.11056522066426144,0.3262568142696458,0.4493915015885426,7.036967536123099,4.964616287994365,20.705583572387695,447.0101623535156,0.0024171904660761356,197,1490,0,105,129,401.89878287999994,3283.13611615245,17574,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32,0.8856986399999999,28.342356479999996,2.7909134154756643,0.647234790689691,1.1727272463944485,0.44567195203715604,0.37717076277840067,4646.894075097887,131703.9284012242,0.25978101145655963,1.475920299323209,2.990279327604818,4.37881450810596,0.9452013826129586,3092.8940750978873,87659.9064313042,14.78808305808107,2.6692556407715413,4.0625,0.1493927275096401,3276.0568557933493,92851.17125564306,0.07634694165142512,0.8736170392940997,1.148486189585749,1.1709955445137148,0.9912820597169586,423.5568557933493,12004.599396443058,0.1493927275096401,"CurrentSlice","Yes",1210.0139999389648,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",7,1,"C - 7",1,1,,,,594,11,32,33,59.39390879999999,0.530252402576142,0.5984414921065658,1.2323001904978526,0.5260878625306977,3.4130236427452725,5.346490992618659,12.911999999999999,37.51755806909754,22736.463157894737,1350407.4192345599,0.2204998472354638,3411.0485582005026,3508.7543734698215,19657.05499462943,11204521.346938776,2.369342041131547,5013.38665299054,44510,197.25005473684212,443.88681052631574,5.858230659484863,3.5058082969665523,45.98834614817231,21.697555250105832,2,6.5649068805478255,1,23.20891510299196,3,16.398270844656025,2,1.1831355907374705,2.555981587650268,1.8159433671899046,6.321315407124739,61.846981048583984,547.0614013671875,0.002205432392656803,928,0.33098437095192845,5042.185964912281,299475.13335263997,0.22277563079116153,1070.9997606527163,2128.095427920673,4054.4206587898316,2311019.775510204,2.369342041131547,1123.2761588996748,9590,0.46927077933829775,0.5003833467858851,1.951369652200677,6.2708375413178485,190.35411071777344,31.41895294189453,0.03883499279618263,802,0.33098437095192845,1.2335649070607868,0.4344809459521586,1.7974761465066176,6.328611693235896,35.746299743652344,954.3530883789062,0.002074726391583681,946,572,11,107,150,797.5455753599999,2859.1690619284036,12266,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,0.666878976,3.3343948799999996,2.6766184017708614,0.6887413900293163,0.9765336695970817,0.6150603369285583,0.3116657138250296,7755.751515151515,25860.738142673454,0.29548245729039296,3.081184196943244,7.851816081288917,9.05816921645327,0.910719673156688,6767.986209029066,22567.138563297125,23.500195228301692,6.1681618574229695,1.6,-0.010655279672482667,3824.747474747475,12753.218397090908,0.09343527312992211,0.9859591728561586,1.2420397920527153,1.2963747952707658,0.9890684782808306,745.3393114821688,2485.2555840688688,-0.010655279672482667,"CurrentSlice","Yes",1222.7200000286102,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",7,2,"C - 7",1,1,,,,368,9,79,45,287.17475903999997,0.7939779033112436,0.6158579899724461,1.240756613139504,0.41930728245395554,7.530546585665505,1.5118931993311364,25.840134959399883,67.4176882760421,14894.556603773584,4277340.70369632,0.1900863356648487,12369.46041655096,3323.9554428139477,12103.183881520685,33356374.777471006,3.35844232154629,2831.2516861639942,23499,131.5312785195936,442.88651930333816,12.824256481933594,7.897920819854736,-9.799080239819332,77.27081810191903,4,58.08587919858026,1,65.32111370345007,2,65.32111370345007,2,-0.15047327090334214,-0.47635036919208495,0.46316678638610886,7.743307616829827,356.2647399902344,235.29547119140625,0.004977317992597818,3645,0.24509750923174833,6297.849782293179,1808583.4937001597,0.23239692731085068,5969.846299746655,1875.2294008114839,5397.448622712836,14875368.404196577,3.35844232154629,1463.6009380702446,13143,0.3401182387293266,0.36007519896844364,0.5553261810621396,7.596898994809659,726.9759521484375,47.10991668701172,0.026767166331410408,3912,0.24509750923174833,0.40988062171269,-0.4447516009999064,0.38733277019554646,7.878400103475088,113.79541015625,1249.2010498046875,0.001454489422030747,4790,212,0,411,176,3030.23554704,3228.7338468415805,18448,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,152,1.3360887378947368,203.08548815999998,2.7368159049955154,0.6563248584969451,1.4996765422255887,0.40695591585153706,0.504987062814851,5104.705632884506,1036691.6353674515,0.17451538452115334,1.411971122246407,5.669368123941221,6.263926173179745,0.9791835929030532,4204.304473304163,853833.2263342476,30.682283067558473,3.033340192842936,4.5,0.15204773961903084,3549.8211942824596,720917.1701215674,0.07364426042864831,0.8232073683052694,1.2717116442326704,1.2504962641202457,1.0027734069412901,758.4484720295604,154029.87818632938,0.15204773961903084,"CurrentSlice","Yes",1235.3769998550415,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",7,3,"C - 7",1,1,,,,208,52,5,8,3.0217953599999996,1.0664874046672148,0.9339547038983822,1.098507637891045,0.577734801068751,0.7268488809865035,12.30871157212399,2.350019472259751,5.96704882760421,8857.827586206897,26766.542299679997,0.12430917963410726,92.99390599111106,3275.024471379543,6236.923376322821,180870.77791336182,2.238829307444728,1101.1092805817439,10710,67.81026206896551,434.9563034482759,1.0623438457489014,0.9921810318946838,110.1766691488434,56.40125145849248,3,37.86330513710487,1,54.16889395491862,4,42.66756329065095,2,-0.016561084868644084,-0.8432648749235252,34.48275862068965,3.367295829986474,11.590909004211426,83.34091186523438,0.012662943452596664,44,0.2192567066875873,4227.827586206897,12775.629782879998,1.0168146275180772,84.07154051433534,1888.4099704020305,3471.3989711977447,100670.5701647346,2.238829307444728,4298.916932279617,16524,1.5787911341126144,1.3120237943142659,34.48275862068965,3.367295829986474,8.918367385864258,46.51020431518555,0.19528581202030182,49,0.2192567066875873,2.711474441160016,9.375612497173037,34.48275862068965,3.367295829986474,10.142857551574707,19.761905670166016,0.059906598180532455,21,151,32,144,73,367.20023616,1481.155788876277,54649,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0.20839967999999998,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,21187.5,4415.46822,0.09795201901038428,15.479835547737196,28.009913400412085,24.637829708954357,1,20431.07138499085,4257.82873868925,1.9637129256981753,,,1,3188.5,664.4823796799999,0.14703208277455887,1.1560939602590963,1.2165648740520087,1.1372307472019352,1,567.5957901159245,118.28678102950582,1,"CurrentSlice","Yes",1248.0639998912811,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",7,4,"C - 7",1,1,,,,159,0,31,15,34.594346879999996,0.6850074238801492,0.611908155550223,1.3857425154536882,0.3831268988086821,2.7621923831298822,2.438955805907691,10.022407183905472,25.191838344878594,28997.14156626506,1003137.1738718399,0.19347477716304587,2832.134186686254,3483.616717124973,26389.176409470638,8761206.567944251,2.519151956903213,5610.215502898428,40039,55.34464337349397,451.07119156626504,4.712082493972778,2.883361707687378,-10.612963055327054,52.646355235456475,5,42.996015684485215,1,50.57579894392043,4,48.852330318333046,2,-0.7792304021917602,0.20370287340576487,3.0664827986645378,5.7926082126413085,27.893280029296875,820.0177612304688,0.0015218748012557626,506,0.7209822554538743,4800.55421686747,166072.03779456,0.17538369267240309,1035.966051745874,1905.623121984582,4216.405552523684,1399846.6434378629,2.519151956903213,841.938925428293,6632,-0.3558747316998873,-0.7442091984888948,3.247931484976049,5.750852358390709,57.878047943115234,27.107316970825195,0.04287340119481087,205,0.7209822554538743,1.28541165255015,3.2620498308776,3.139062273189142,5.775905870941069,54.633399963378906,215.5030517578125,0.0053882841020822525,491,147,0,102,50,327.39589728,1883.142584341184,8847,1,0.8335987199999999,0.8335987199999999,1.4796776500174413,0.8971388966003898,1.1167381206127498,0.5074519817359348,0.38491446777173755,7572.25,6312.217907519999,0.07168787418787849,1.0476514400350498,2.5730773966707146,2.559242146882807,0.9895229073478603,4629.373112659698,3859.039501115539,9.739984273446362,,,2930,2442.4442495999997,0.02622186131176154,1.003195617438941,1.1234812675186978,1.077784713840057,1.0044406105839554,322.0348432055748,268.4478330915678,-0.6162934814295424,-0.6162934814295424,6,0.9377985599999998,5.6267913599999995,5.982568234062548,0.6693798314612295,1.7057063544868243,0.2736735765815593,0.3659237279605518,5758.714646464646,32403.085817432722,0.12706109759017675,2.693554205200994,9.858303199124489,6.561560402310234,0.9798678801654693,5174.565982120859,29116.203159947563,4.899443506402288,2.946443362651696,3.3333333333333335,0.34460316260119733,6168.588383838384,34709.35982157818,0.12017415994048164,1.1268399140220808,2.365287882688008,2.0638998563415196,1.0101212779495967,3560.623227043959,20034.884010146267,0.34460316260119733,"CurrentSlice","Yes",1260.7200000286102,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",8,1,"C - 8",1,1,,,,404,0,34,17,44.284932,0.757965115293752,0.5547375352072257,1.266123670954509,0.4670746914716756,2.9872812210655892,13.142373534543568,10.696327609044143,27.096195310416842,15446.416470588236,684043.5030436799,0.15417413439007524,2233.6771562744816,3234.4617151607963,12695.588201978482,5395624.985840855,2.153893150562729,2381.4378887815424,18770,135.7780348235294,450.7457675294117,5.224221063995361,2.8980715164184567,1.644610421852549,75.97522304771852,3,50.78050120533083,1,75.97522304771852,3,66.89645036249317,2,-1.0884857451130678,0.11207966473731812,2.530103806228374,6.001929960546622,59.49795913696289,227.5,0.005038655828684568,490,0.24447475606080699,5826.08,258007.55662655996,0.11745288024026404,1211.9845413714152,2704.9066934809975,5068.061866357539,2153926.293201954,2.153893150562729,684.2898765101975,8773,0.22768477815494925,1.8935133314591335,2.6629757785467127,5.960756834544753,93.35330963134766,38.583595275878906,0.028759686276316643,317,0.24447475606080699,0.2502510069685251,-1.0426151741825898,2.8179930795847747,5.927706496470935,65.02222442626953,48.31111145019531,0.021691925823688507,180,201,0,298,361,2763.27555696,2103.6282288170746,19996,5,1.2087181439999999,6.043590719999999,6.680935417059101,0.5587794177814729,2.1316838609033684,0.13935731675181579,0.4019476624157783,13964.746938775508,84397.21500633206,0.1524413301372571,2.1846674716317502,3.6436378454959106,4.282892125084592,0.9687966151922855,10132.10836959442,61234.31611651516,24.93516904501796,18.167167183951435,2.4,2952.8183673469384,17845.625682743506,0.06381291871083787,0.9765842816655865,1.073428829070187,1.079028761708391,0.9975968124566508,201.99009873718433,1220.7454862599307,-0.20822351522229815,-0.20822351522229815,108,1.1867204,128.1658032,3.027597274078401,0.6992054838857094,1.4007229660254978,0.4631709144416933,0.45598468880362725,4633.390967320388,593842.2748662424,0.2585670659820835,2.0921822479668495,6.11250676162036,4.570555917275613,0.9583660470755616,3875.3728336779272,496690.2719277915,38.0014575581908,3.0918747893842617,4.648148148148148,0.08969853536969428,3047.2888498335847,390558.2230213255,0.07036814974949611,0.8064216561667343,1.1077713882058,1.093850581391268,0.9981714440711557,296.46058122383056,37996.108509691076,0.08969853536969428,"CurrentSlice","Yes",1781.4299998283386,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",8,2,"C - 8",1,1,,,,157,0,53,51,90.02866175999999,0.44300666260085764,0.24442349756473267,2.483619716754028,0.08914805347720989,5.9654475581580275,3.295223214731887,22.62595443113947,50.53475917265684,29564.837962962964,2661682.7969568,0.21080367318141033,7708.903098504114,3187.068978085931,26970.314886039887,23302352.06153846,3.925296950798578,6232.376439605798,44427,58.429788888888886,445.4083319444444,11.589669374084473,2.8327875240325926,131.73153902889453,55.983503053638515,5,33.80495672110755,1,61.44391636180568,4,55.04608381402025,2,-0.1152863855403448,-0.5413543091718402,1.2029535322359397,6.734296143643131,66.75871276855469,878.67626953125,0.0013970340369269252,1492,0.08642961360535001,10777.902777777777,970320.1636627199,0.32624426013415553,2317.3138155580914,2745.75475763307,9780.225854700855,8450115.13846154,3.925296950798578,3516.2289175339706,18854,-0.32525546422815615,-0.6771074689094956,1.2779706790123457,6.690368833580629,102.3415756225586,132.93508911132812,0.013882376253604889,1294,0.08642961360535001,0.22080673526244046,-0.6972863738671116,1.6798482510288064,6.6842045775116015,33.30241775512695,1282.4718017578125,0.0018856428796425462,1488,0,0,259,167,1416.3884251199997,4448.134922386523,26102,1,0.8335987199999999,0.8335987199999999,1.289832091516331,0.577350316303683,1.178097330842255,0.5,0.3953476444852049,10208,8509.375733759998,0.25104176712842263,0,0.7133450088318803,3.5625303093254357,1.0005387931034486,0,0,19.288084003624263,,,2584.875,2154.7484913599997,0.09206420074842156,0,0.9962813678518061,0.9440403095160094,0.9953334300498091,0,0,-0.21483824312135066,-0.21483824312135066,60,2.368809696,142.12858175999997,1.8710391014075658,0.6290057167599552,1.7436102254796593,0.3887510480123631,0.7525476013495705,7521.204203459309,1068978.086565022,0.21962739903638767,1.670698850519341,7.538717223470756,8.111653639552596,0.9740192531567506,6523.5272803823855,927179.6804334183,30.379915502792095,3.491946589802092,4.066666666666666,0.13746940545511846,3380.476527590824,480462.3345394533,0.09185059229950213,0.8185812342639218,1.302927909047482,1.2256797800880266,1.0002073923014039,785.9534506677469,111706.44927278499,0.13746940545511846,"CurrentSlice","Yes",1794.1299998760223,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",8,3,"C - 8",1,1,,,,275,0,29,37,95.03025407999999,0.8205197728710559,0.7278326909405894,1.0791949628760757,0.6903704177536445,4.040089409898309,1.9816270622819858,12.855385884523264,38.14971972421894,30795.496710526317,2926503.8769211196,0.31693588245671955,7580.779653084848,3023.9817525813205,28149.603018109592,25672437.95251595,5.583109402965802,9760.197925643663,56632,93.63889999999999,447.1940947368421,6.532857465362548,4.754827228546143,91.73645988034689,59.614769624714555,2,59.614769624714555,2,59.614769624714555,2,59.614769624714555,2,0.5185998202510447,-0.5617507425009056,1.1229416743613418,6.799865657009677,44.82969665527344,1065.7388916015625,0.0014043113915249705,1421,0.5132246928081828,13463.997807017544,1279487.13253344,0.524498388342639,6081.2858862956455,2411.559014026366,12711.136361234412,11592556.361445785,5.583109402965802,7061.845150429526,44033,1.1864154019450985,1.7869303821047007,1.1686288088642658,6.770984524486347,62.162471771240234,262.87872314453125,0.01970740035176277,1311,0.5132246928081828,1.7556426694630307,4.298108983407702,1.2383618036318869,6.727849118504854,100.13182067871094,60.130680084228516,0.03154611587524414,880,259,0,77,95,398.04338879999995,4751.5497382198955,44033,4,5.678891279999999,22.715565119999997,1.144065053220841,0.6330652142667499,1.8460236908143066,0.43554782095565475,1.1466577296850797,9259.685752089734,210338.99469233048,0.29074707927180976,2.925973336889494,4.47440717149382,3.395149497774354,1.0049527497858868,7190.208076682222,163329.63979222495,6.213810767360306,3.3559775257426883,1,13350.366073936428,303261.1099283416,0.15282235665230473,2.151967212971962,5.045692543203568,4.997170172192606,1.0334849967461661,10704.472381519703,243158.13945765226,0.5113303566440384,0.5113303566440384,3,0.5209991999999999,1.5629975999999999,3.417223303922448,0.24381004644096313,1.0644181476085006,0.2318840579709752,0.2781841264435105,8452.27777777778,13210.8898812,0.30788828938599205,3.712900376869861,11.226870262941478,9.461419218606295,0.9068162683535433,7699.4163319946465,12034.169248308433,7.3752550670418415,1.5988422044342507,2,0.19300147013690508,5260.955555555556,8222.86090704,0.08651895934878968,0.8242310007131216,1.988347290986686,1.963351445595769,1.0059912927815382,2615.0618631388306,4087.3354159375203,0.19300147013690508,"CurrentSlice","Yes",1806.8239998817444,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"C",8,4,"C - 8",1,1,,,,178,0,51,23,55.017515519999996,0.44341148142552245,0.9565443167634091,2.1720289544868714,0.1561976537419245,4.361073099953767,2.81486957976461,17.383311997430177,39.486801103559294,28366.907196969696,1560676.7569636798,0.29361286496282624,3877.7404340142275,4005.95506389292,25728.657196969696,13584731,3.246690496755837,8328.888892236888,48335,67.14973636363636,450.2301909090909,6.3029278518676755,6.029029815673828,21.74595830331873,36.90510694350669,3,22.62529256743397,1,35.18978284839801,2,22.62529256743397,1,0.043607428115593885,-0.7878930838743274,1.929809458218549,6.255968496195656,30.54712677001953,849.0816040039062,0.0017245360650122166,870,0.14305677713460155,11638.045454545454,640296.34641792,0.13916351024083404,1214.633065247855,3584.5872793154876,10761.21212121212,5681919.999999999,3.246690496755837,1619.5912577969282,17108,0.008086247299226398,0.36630006413578364,2.080463728191001,6.200831788651115,92.48184967041016,144.4438934326172,0.007672247476875782,606,0.14305677713460155,1.1060296892492496,0.03733237891276131,1.9441574839302111,6.250717381191414,39.68470764160156,579.5411987304688,0.003189265029504895,850,71,0,197,82,948.9479428799999,5440.481827165916,32442,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,48,2.0774843099999996,99.71924687999999,1.9843898578053019,0.6707243680739353,1.482415093059615,0.4979967270409305,0.626652907450616,8143.970255802175,812110.5805217138,0.19319710708584192,1.754806052097978,9.287934144613772,5.899535934163894,0.9719337777502456,7267.136922468842,724673.4208824338,17.029673659740084,3.568784037852337,4.333333333333333,0.044702192262840355,4200.907204333395,418911.3026288924,0.08914382422222832,0.9343281742980675,1.5923082362677514,1.2483497062920057,1.0025973192729096,1562.6572043333954,155826.99954773244,0.044702192262840355,"CurrentSlice","Yes",1819.396999835968,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",7,4,"C - 7",1,1,,,,329,0,27,29,63.040903199999995,0.8508525368113518,0.7777597727115925,1.0899417580652884,0.6804864032995526,3.306914126945245,1.096141615304777,11.24252666974822,30.51328717248281,20334.353719008264,1281896.0244345597,0.2292312428393603,2854.2126257780437,3483.616717124973,17622.63586186541,10661694.696428573,3.4514070048047785,4661.269175343433,31957,110.011307107438,448.9283642975206,5.220512134552002,4.060304331207275,125.09622532581137,47.478194662021416,5,42.25857287112272,1,46.40917521887801,4,48.4836089116518,2,-0.09152415255174995,-0.6616042617216671,1.6966054231268355,6.386897292925124,53.9334831237793,433.0157775878906,0.0029123539570719004,887,0.2478595591952436,6577.080991735537,414625.12613855995,0.2378666717731517,998.7682946897827,1905.623121984582,5637.52563459268,3410703.0089285714,3.4514070048047785,1564.4683654865921,11519,-0.07391337401791596,0.531363647270739,1.8823850829861348,6.3089898412258245,104.69491577148438,51.21109390258789,0.027809426188468933,649,0.2478595591952436,0.16046074354718937,-1.1164984559324274,1.6966054231268355,6.386897292925124,37.668148040771484,960.3185424804688,0.001323564792983234,901,305,0,82,55,270.60698448,4588.118598382749,11519,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1260.7200000286102,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",8,1,"C - 8",1,1,,,,926,0,31,12,28.446556319999996,0.650386193858955,0.46634704784946723,1.5984334355726555,0.25767161625573765,2.6901234363667776,4.822193052333279,9.875780993926506,23.44413020694456,19884.043956043955,565632.57626496,0.2186928198011006,1528.0145722001307,3234.4617151607963,17073.86333207023,4661164.689655173,3.005929284493954,4348.497641796284,26865,304.5340131868132,451.4482153846153,4.873814044189452,2.272888791275024,7.498236110302692,27.980923244046025,2,12.530081705902699,1,31.17722306131945,2,31.17722306131945,2,-0.5311028429395447,-0.8595000981124046,3.7166740463443757,5.599315792539393,27.157634735107422,380.5591125488281,0.0032986963633447886,406,0.32688683844806016,8130.758241758242,231292.07224847996,0.30172354618876585,445.10062879582546,2704.9066934809975,7358.607174434761,2008899.7586206899,3.005929284493954,2453.2412099068315,11739,-0.3362607919300177,-1.123918212772287,3.8240148130258023,5.579003787248259,30.195402145385742,75.07662963867188,0.020031843334436417,261,0.32688683844806016,0.12774512385960224,-1.395968727020902,3.6898388546740195,5.604393793862177,26.575307846069336,290.5135803222656,0.004976088646799326,405,926,0,86,77,278.63037216,5307.919596110695,20896,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13,2.3164425969230766,30.113753759999998,2.8495322793943645,0.7143699820143108,1.7788362113698257,0.4550413341305628,0.7104676489115086,8944.216486464276,269343.93284951756,0.17314828655924736,3.313249007351892,11.583505954952246,8.822920810251718,0.9658821282708456,8172.065419140796,246091.56574261707,14.634849882400832,2.70980594732237,2.923076923076923,0.24496729517908256,3649.2314234787846,109892.05649989439,0.06122054227139666,0.8571976405458096,1.2985753984448871,1.3099230532154982,0.9982159339802384,839.0507995050571,25266.969168426414,0.24496729517908256,"CurrentSlice","Yes",1781.4299998283386,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",8,2,"C - 8",1,1,,,,383,0,77,41,247.57881983999997,0.7524805009171415,0.7035641903488375,1.265605181853776,0.4260065742252519,7.061808184860534,1.423534648430392,25.631620924163183,64.30045572430596,12405.55260942761,3071352.0745051196,0.16540035123611505,8840.505414976953,3187.068978085931,9638.71865651559,22901595.52788104,1.9419021083508199,2051.88275887743,20483,134.69454949494948,447.2589636363636,11.551315447998046,8.127091900634765,-13.487650226299518,71.06036652408808,3,68.44694433266565,2,71.06036652408808,3,71.06036652408808,3,-0.23891380772704132,0.04890748001143619,0.5487676994411002,7.576216944745326,346.3691711425781,160.9038848876953,0.007077590096741915,2622,0.14168563707404383,5331.986952861953,1320087.03719184,0.1732251578139409,4585.805810127893,2745.75475763307,4483.146184584381,10651955.33457249,1.9419021083508199,923.6342813713857,8438,-0.5787877694721919,0.45651715891918965,0.7747933884297521,7.291612697163038,670.7194213867188,32.45536422729492,0.03692110627889633,2666,0.14168563707404383,-0.010575956907253761,-0.41512885881180006,0.45771973381400993,7.713220599202335,167.09344482421875,1231.3427734375,0.0009375471854582429,3767,329,0,282,98,1485.8897183999998,3190.720827489481,19558,2,0.8856986399999999,1.7713972799999997,6.628153041229281,0.9180967709640794,2.538738138903049,0.08468852840818564,0.47248183379209896,16222.90625,28737.212004944995,0.08709467726629747,1.9646765289304415,3.4879749050502946,5.66169624029879,0.9757274116131829,11571.810215303594,20498.273140064997,29.702376891896595,1.9252067087068858,1,3052.15625,5406.581279384999,0.035800885397966324,0.5074058547261106,1.1031223058354065,1.1146993688055409,0.9957492115071489,285.32229708798013,505.41914098499984,0.020309974832320825,0.020309974832320825,46,1.3591283478260867,62.51990399999999,2.330580640420608,0.6464486383148778,1.3823474884911515,0.40817598848775993,0.5095545670294704,5184.2087256542845,324116.23184386815,0.2312055073808935,1.5958809026866998,6.107398371279744,5.591193170677674,0.9513039756681622,4335.367957376713,271046.7884998681,18.478417954171437,3.4592498467600867,3.9565217391304346,0.060970204878999776,3529.315989678857,220652.4968603871,0.08452676870479257,0.8035546569326321,1.2755792540294457,1.2796454022929211,1.0037998590067063,762.4820367668372,47670.30374038712,0.060970204878999776,"CurrentSlice","Yes",1794.1299998760223,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",8,3,"C - 8",1,1,,,,1506,0,25,8,14.900577119999998,0.5946830162702916,0.33897838143094317,1.7816853854080492,0.20682140894735423,2.0555456933776464,3.867018967917313,7.7740534600683056,17.74449765520842,17681.62937062937,263466.48204432,0.18482581964127245,881.113508299216,3023.9817525813205,15234.06636288329,2178471.4898923105,1.8546833379004428,3268.0216410197695,22446,490.00362797202797,452.0148083916083,3.9003773746490475,1.3221436094284056,0.13705611101859363,124.63787670159307,3,111.33068753336481,1,127.07688858010414,3,111.33068753336481,1,-0.5952632180183276,-0.60565773836385,6.993006993006993,4.962844630259907,19.019229888916016,303.00482177734375,0.0039014534559100866,208,0.710035013759644,4472.6783216783215,66645.48826511999,0.05529827135234238,287.15918046842694,2411.559014026366,3329.690224191074,476145.70205932355,1.8546833379004428,247.33137950390713,5112,-0.019030038496355015,-0.1560865873085726,7.775441341874909,4.885289700966486,29.039215087890625,22.176469802856445,0.0470588244497776,51,0.710035013759644,1.4675851181965178,1.8646820635139463,7.1886155802239715,4.943455897936552,22.813953399658203,93.52906799316406,0.01436875481158495,172,1353,0,249,65,844.6439030399999,2266.9227732543795,8835,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2.5007961599999997,2.5007961599999997,1.2303030149726661,0.8442518716781107,1.0253809967743133,0.7334050194437943,0.6388396042699811,6285.166666666667,15717.920664959998,0.14182045238268,3.4040678886832354,5.4988907412807,7.035570559274528,0.9459303313308572,5142.178569179419,12859.540419838186,6.291960010943691,,,0.447922635443204,6364.375,15916.004560799998,0.14059436780488996,2.3044894658025212,2.600290566517774,2.375139786795642,1.0061897071236472,3916.8119922539204,9795.148389670552,0.447922635443204,"CurrentSlice","Yes",1806.8239998817444,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"C",8,4,"C - 8",1,1,,,,509,0,20,15,24.070163039999997,0.9439026455100636,0.7545040146019917,1.042150864773719,0.723983915639167,1.9980892865029136,6.636793041195277,6.2091819751075095,17.90114648281263,18198.454545454544,438039.76798511995,0.26458937244521663,1348.8305882716925,4005.95506389292,,,5.414815507459284,4815.117667654618,28861,167.35433246753246,450.61482597402596,3.190030881500244,2.4068911067962646,1.5151700122546157,60.56040931990915,2,52.427777602985756,1,79.74326703587971,4,71.74982091574438,2,0.1062000361818912,-0.9355460143848702,4.366484885965406,5.436416436231231,22.059459686279297,344.0702819824219,0.003833256894722581,370,0.25170166501244784,19409.878787878788,467198.9470108799,0.2789915845810906,1976.7498850624422,3584.5872793154876,,,5.414815507459284,5415.192839557201,36859,0.9219968791522646,0.8815525782881459,4.366484885965406,5.436416436231231,20.071855545043945,431.21856689453125,0.003246282460168004,334,0.25170166501244784,0.9095195896179452,0.1869525508520682,4.441445999887558,5.424413887650107,35.686668395996094,145.4633331298828,0.008289921097457409,300,394,0,154,25,274.77497808,3769.811528251801,36859,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1819.396999835968,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",7,4,"C - 7",1,1,,,,465,0,38,30,88.46566415999999,0.8065471910405401,0.9627216203057406,1.0809137882370778,0.7958750306615809,3.901152952648485,1.0709185160282053,13.012484005753857,37.125936000087016,18678.69964664311,1652423.5698854397,0.14589475919760983,3676.009551087631,3483.616717124973,15787.81075775422,13403851.333333332,2.0513191616291593,2725.124387071476,26233,155.46603109540635,448.9794402826855,5.621044498443603,5.411501067352295,-19.820283631533506,52.0943669029688,4,42.866253910030984,1,48.705026940824425,3,50.33016406915392,2,0.10383257141191558,-0.28514268545451893,1.29161862982987,6.6791451976526846,113.04048156738281,354.758056640625,0.0030765484552830458,1087,0.07315142883460934,3909.0412249705537,345815.92819584,0.21501480677221868,1520.664874806147,1905.623121984582,2621.3004842298133,2225484.1111111115,2.0513191616291593,840.5017436516806,7196,-0.21661749909525307,1.4291333582641368,1.5579889595047731,6.540639254004394,258.19000244140625,19.424537658691406,0.06999459117650986,921,0.07315142883460934,0.9255033015324177,0.8972820535540698,1.3082667754345512,6.668331519932927,118.67729949951172,197.79672241210938,0.00594172440469265,1097,430,0,106,74,457.74989711999996,2516.134987480082,7380,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34,1.3944390352941176,47.410927199999996,1.961191146815934,0.6795295431699082,1.3630715931874706,0.4833083875682359,0.5236143501838715,3174.3159364999806,150497.26177520037,0.25696908543331604,1.3483314645693818,2.4650271875952567,3.6168601905196818,0.9721229343202653,1886.57519575924,89444.27926346706,10.543529276017276,2.9972320882953203,4.705882352941177,0.04975348407206566,4282.68424067527,203046.0307552425,0.0835644933331487,0.7956413890202084,1.4814420080743114,1.4329099040298943,1.0009502404031336,1391.7953517863816,65986.30810084252,0.04975348407206566,"CurrentSlice","Yes",1260.7200000286102,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",8,1,"C - 8",1,1,,,,241,9,60,88,331.45969103999994,0.6947678970779231,0.8145148904732941,1.4065568857880089,0.29955978998251354,8.613984327783164,1.9331315103385562,31.112963754679495,77.42842427612912,23067.767368751964,7646035.045029119,0.15674530900328673,21199.786450608088,3234.4617151607963,20251.225053247563,64419146.894380495,4.9199938049106295,3615.764324230961,32916,87.11317648538196,436.2409109085193,13.357655209350584,10.880009069824219,116.69743540457101,61.3485611950661,2,50.78050120533083,1,63.50520911037007,3,59.29950307315443,2,-0.38196162127749306,0.045013554560547675,0.38473089738951244,7.916431311993781,375.18658447265625,535.808349609375,0.002097970573231578,4738,-0.06354715335739873,13308.124174787803,4411106.72729712,0.33896773001456176,10841.322795488588,2704.9066934809975,12135.117404307099,38601808.46310088,4.9199938049106295,4511.0246422797345,33947,0.5382768928529638,-0.1572933160513772,0.3795919283003127,7.927490918146488,321.78436279296875,207.02085876464844,0.007471819408237934,4985,-0.06354715335739873,0.960141617442579,0.31568067431374214,0.37227877998106684,7.942957720657139,185.45193481445312,391.03179931640625,0.006595188286155462,4275,145,0,215,230,2205.49381344,5318.004393839176,41170,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,1.6585141199999998,39.804338879999996,2.1038462832805727,0.7177479771579969,1.4769827501298927,0.4569709633720987,0.5805269470451074,9870.777092634298,392899.7564041567,0.16043030908672404,2.378243785597729,8.414936163232207,9.736916001055578,0.9853168766788603,8697.770322153594,346208.99740340834,29.534003597854007,3.0474994782134632,1.9166666666666667,0.27568835510560047,4100.941978378869,163235.2842346101,0.08227937401066822,1.0167986541266694,1.4560200128377803,1.4720684478422703,1.0002352771990208,1284.399662874468,51124.67943841308,0.27568835510560047,"CurrentSlice","Yes",1781.4299998283386,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",8,2,"C - 8",1,1,,,,657,0,57,51,160.15515408,0.6837918416783558,0.39712563395645856,1.5265908848703105,0.24681889204599283,6.237949324116916,4.386643296443262,22.898331705170136,54.25171034505263,21733.36955107352,3480711.1491297595,0.19226695957112497,10190.42595152584,3187.068978085931,18873.19582225996,29008101.97881356,3.004397351392203,4178.608884820571,32458,221.17953571893298,444.8694347430058,11.59527956085205,4.604782746505737,-41.25409086395816,93.6444928213115,3,86.51799055973737,1,111.29507839973463,3,88.8762546096273,2,-0.26413117989327123,-0.14206827853202242,0.7285060039308,7.257977591346729,158.26283264160156,477.58697509765625,0.0025076393503695726,2317,0.07640243615092308,8249.338321405336,1321174.0499227198,0.24511577467076429,4187.15924717162,2745.75475763307,7243.017346829064,11132517.662076272,3.004397351392203,2022.042953172491,18149,0.25977866019670653,0.04003761789559057,0.7979278427713875,7.188629303901827,280.3583984375,77.57820892333984,0.01677471585571766,2129,0.07640243615092308,1.723204530764757,3.332600146462892,0.6954883000919839,7.293272926515142,86.02590942382812,700.359130859375,0.00305485469289124,2509,476,0,369,220,3002.7267892799996,3306.6046777943575,19999,2,0.8856986399999999,1.7713972799999997,1.1516678940103122,0.6419446373978527,1.5984974709511877,0.17872039848119653,0.46801353465197637,12575.378787878788,22275.991779818178,0.047784676479480655,0.5413515090207889,2.3931204145838256,4.388731199359947,1.0110558323850718,7320.5747624550595,12967.646222249537,55.348835240252775,61.44511613873643,1,2994.8030303030305,5304.985942014545,0.055421316714159084,0.4743517670650146,1.0470703230832477,1.0937529975982418,0.9924425747012757,134.62930148947135,238.48197846674947,0.11726848288085935,0.11726848288085935,196,1.354066288163265,265.39699248,3.143327741859389,0.6655356240322283,1.731838248721426,0.3659265807735454,0.5370947347746385,5194.108455292476,1378500.7626495615,0.2056643259482046,1.338366703035573,5.1614828534002735,5.601870075037389,0.9692217437148483,4187.787480716204,1111426.2025274765,42.81803164330457,2.774673984168359,4.6020408163265305,0.07551502223096788,3292.1789058852723,873734.3803280481,0.06936020319572256,0.7352746736788905,1.1510415862923526,1.1936651783976888,0.9999354074007768,432.0051770717132,114652.87473062253,0.07551502223096788,"CurrentSlice","Yes",1794.1299998760223,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",8,3,"C - 8",1,1,,,,986,38,49,34,114.51562415999999,0.7841439929213027,0.8506610947173376,1.1723385271313274,0.4895010367111746,4.62241518799237,3.706032069076995,16.488098209314497,42.839006896701754,23567.36305732484,2698831.2903148797,0.15601776447678903,7827.360141360823,3023.9817525813205,20920.056782815038,22991142.40431373,4.430493955183842,3676.9272988166854,30737,325.90493066424017,435.24219581437666,7.040376189422607,5.988974116516113,27.077069865194023,61.931599192127045,3,53.56923222973781,2,53.56923222973781,2,53.56923222973781,2,-0.1790910684350471,-1.1048573186722876,0.9927132035823782,6.9406558400985405,113.89494323730469,555.3291015625,0.001999885542318225,1504,0.16063013173897084,10684.39763421292,1223530.46385552,0.2743103667684292,4062.5959873468414,2411.559014026366,9835.968571032094,10809729.45956427,4.430493955183842,2930.841033740683,29415,1.3576504595217087,5.11277186495612,1.025831242067195,6.916212854652641,192.7971649169922,130.85377502441406,0.01021781750023365,1696,0.16063013173897084,-0.10571161812118013,-1.124610498870069,1.9845984562026362,6.861588867571644,43.86208724975586,1952.4967041015625,0.0008002239046618342,1965,747,0,346,204,3273.0211742399997,3163.0054439527553,29415,1,5.418391679999999,5.418391679999999,0.6812633317792727,0.6608255777640745,1.4992989539431096,0.29527745169502506,1.137075727444067,49547.519230769234,268467.86596464,0.28761886473673515,2.829529126933603,12.76778153492092,18.167056586596043,0.8984505573621276,45666.85138763198,247440.88761054154,16.283304946042822,,,3407.4615384615386,18462.961249919997,0.09371968893876371,1.1388094226230976,1.2871429238358492,1.2754455622109266,0.9902131113747483,760.1552639517345,4118.818957704281,0.5893764250556383,0.5893764250556383,26,2.949657009230769,76.69108223999999,3.2992407906759933,0.5061385555152829,1.8926683871330594,0.2881838813428559,0.8136464491337617,10025.682279228102,768880.4241883928,0.12612783464173016,3.4550060707955224,11.816759602318458,11.222676950551973,0.9816227758871151,9177.253216047275,703813.481129186,27.743719184478334,3.8207797996612953,3.076923076923077,0.1744255554120725,4708.978779139136,361136.6788173743,0.0954950542652182,1.2326938365251663,1.7787812556788836,1.7573576122572492,1.0021257134099295,2061.6725046293323,158111.8956044749,0.1744255554120725,"CurrentSlice","Yes",1806.8239998817444,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"C",8,4,"C - 8",1,1,,,,894,0,32,12,28.863355679999998,0.6451146811533777,0.39331957957686225,1.5981222864208142,0.2556644602515379,2.7094958108111844,3.6586288625013776,10.027604180461053,23.711546482812633,16115.321299638988,465142.2505689599,0.18806876985048393,1328.2301739759794,4005.95506389292,13173.235362138988,3648986.1953125,1.8560983599951941,3030.7886525684066,21435,293.2900202166065,451.4993111913357,5.041924780654907,1.9830877349853515,-2.595254832675516,38.550035080152476,3,26.202108594116805,1,31.532419359235984,2,31.532419359235984,2,-0.5365163125472282,-0.5773994494729262,3.6361740671714733,5.619012833403513,33.787235260009766,250.6170196533203,0.004781080409884453,376,0.3454216390588386,6653.3465703971115,192037.90852367994,0.06617080611071491,633.7884750462096,3584.5872793154876,5541.7450078971115,1535063.3671874998,1.8560983599951941,440.25730589713726,8668,0.26906544575730873,4.82773084421451,4.626673096221768,5.458201029699505,39.925926208496094,48.35185241699219,0.0218108631670475,108,0.3454216390588386,1.0085954536724906,-0.38759388009606344,3.7143713589386023,5.603998815052034,29.690265655517578,316.2536926269531,0.0043225837871432304,339,770,0,216,37,602.5876747199999,3087.278402213384,9885,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,1.3459145999999997,16.150975199999998,3.370259764533218,0.6354935975810229,1.3417706784936383,0.38632766634940924,0.4544986786448903,5894.844289166459,95207.4839221891,0.16751255955277122,1.777395705592495,5.303019074486466,4.270256965324936,0.9822924232538263,4783.242726666459,77254.03465397036,22.493402734076156,3.413060646571163,3.1666666666666665,0.09021166960515094,3647.5474442049913,58911.448312178196,0.060253259106849234,0.9221738342042555,1.2397827669522286,1.083912250183112,0.9968409111813488,705.4615067049913,11393.891299346946,0.09021166960515094,"CurrentSlice","Yes",1819.396999835968,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",3,1,"D - 3",1,1,,,,268,0,42,25,76.37848272,0.7287476660272578,0.7282555022983034,1.1695212695688175,0.6200208022642544,3.7705059170900928,1.0446498118730236,13.238736000087016,36.29124413802105,19451.556616643928,1485680.3809214397,0.18387814640863634,3963.2406485952306,3197.452042033961,16856.64452873184,12355920.439560438,5.003724544816772,3576.716175431131,26280,93.65912087312414,449.7000343792633,6.095967249298095,4.439421691131591,9.03481084602397,31.886242494537374,2,21.380652495071857,1,21.380652495071857,1,21.380652495071857,1,-1.0290773049906534,0.7154526229286495,1.4684834418720651,6.547722641232776,67.52455139160156,372.480224609375,0.0033572071697562933,835,0.6179846333290552,15430.583901773534,1178564.58590112,0.23068167815115667,2541.2188841790703,3083.8196154817665,14386.177308366941,10545067.967032967,5.003724544816772,3559.5529893133416,24126,-0.43600723116085627,-0.11538388259155141,1.494540182285511,6.532128980983731,63.33333206176758,258.82843017578125,0.005167318973690271,816,0.6179846333290552,0.46494655693338055,-0.7403187350704101,1.4461490929462544,6.556715374837153,63.00565719604492,425.4596862792969,0.0025870518293231726,707,212,0,134,34,342.50487408,6899.337693945848,24126,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,0.48626591999999996,1.45879776,3.275581020303523,0.5356886818864175,1.0390163137284345,0.35164835164835156,0.27323776735632854,13574.625,19802.632542839998,0.07602773590891716,1.406594442663302,12.997452415273408,11.44446775368485,0.9916838301234779,12530.218406593407,18279.05454384923,7.735288245057853,11.409333086580867,2,0.4144958807224504,4672.25,6815.867834159999,0.05780020531111323,0.6083930352668886,1.8005426934364375,1.741678997975899,0.9884071770166015,2077.337912087912,3030.415892916923,0.4144958807224504,"CurrentSlice","Yes",50.97699999809265,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",3,1,"D - 3",1,1,,,,720,0,60,70,278.83877184,0.6989849713863782,0.8905579041463955,1.2240294220217691,0.45321831492893594,7.370255803344357,1.2737991179561927,26.53447415872415,70.80233710364631,32125.86360239163,8957936.35119024,0.19117252319634423,17699.740006174605,3197.452042033961,,,2.725592923328033,6141.582404730804,56965,243.03377982062776,442.46941479820623,11.00784030303955,9.803119189453124,64.45450647332828,40.99992920739912,2,23.073391247035058,1,40.99992920739912,2,40.99992920739912,2,0.09299456495621722,0.27584902376977016,0.418378723794075,7.811770974297319,206.21498107910156,1044.597900390625,0.0011294626165181398,4354,0.08098882643496527,8405.236920777279,2343705.94001376,0.2172759019268712,3425.729624149337,3083.8196154817665,,,2.725592923328033,1826.2554328709211,16296,0.7173035882870569,0.5246008320953357,0.5340054204901677,7.617960546995607,545.0929565429688,81.42498779296875,0.014712704345583916,3506,0.08098882643496527,1.187259283275902,2.493860162750745,0.44239779605461604,7.7688314810351615,224.67584228515625,285.84844970703125,0.005374071188271046,3708,633,0,160,121,1152.4502303999998,7010.803797468355,35645,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42,1.02463176,43.034533919999994,3.363171958141516,0.7397306628050507,1.4007483944800618,0.45481204634826705,0.4050028753788484,10026.168980055789,431471.5090598626,0.11505670069590301,1.451258554085206,,8.452842534157945,0.9839598556776565,10026.168980055789,431471.5090598626,15.984750291775324,3.759476105059074,3.5714285714285716,0.21037020407046386,5742.741438346675,247136.20122231953,0.08441849907777875,0.8367981793268138,,2.140727091652696,1.004297397327592,5742.741438346675,247136.20122231953,0.21037020407046386,"CurrentSlice","Yes",50.97699999809265,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",3,1,"D - 3",1,1,,,,895,0,52,13,43.65973295999999,0.41582546852326735,0.2726474428408714,2.1356523401492806,0.13837112281742492,3.852262527696695,1.2937183404267667,16.465964401759162,36.323687172482806,21864.429594272075,954595.1574086399,0.26797438722824135,2301.200761741728,3197.452042033961,18811.89626093874,7882184.533333333,2.058259401465949,5859.107122620085,30578,297.5846205250597,451.4415780429594,7.433147138214111,2.0266285594940183,-0.07912937001338383,29.166539649139764,2,14.5351132076506,1,14.5351132076506,1,14.5351132076506,1,-0.33200773719747456,-1.093709763220301,2.4549871554616347,6.018019449357175,33.28438949584961,455.16229248046875,0.0030171710532158613,647,0.7743467969479183,6347.300715990454,277121.45427696,0.1425019466330882,815.3258217383228,3083.8196154817665,5272.400715990454,2209135.9000000004,2.058259401465949,904.5027078942343,7917,-0.6077191350666715,0.019997195121149502,2.591691776647433,5.980376284402322,69.328125,42.2109375,0.026662353426218033,256,0.7743467969479183,0.8843143484510693,0.033366183662759674,2.5575156213509835,5.990302019684804,32.552146911621094,138.8251495361328,0.009226446971297264,326,871,0,111,50,230.07324672,3847.4071557971015,9000,1,0.9377985599999998,0.9377985599999998,1.7671458676442586,0.9847243890830327,0.9308422343163644,1,0.37273733377797424,10650,9987.554664,0.14891949955142336,1.9737085953619393,4.009789156626506,3.810733164985566,0.9605790297898725,7994,7496.761688639999,5.046016608136636,,,3416.222222222222,3203.7282806399994,0.03998127932714741,1.0667693674188803,1.1191432980984828,1.3643784350910366,1.0067407142978508,363.68888888888887,341.06691628799996,-0.33259984458826347,-0.33259984458826347,4,1.9537469999999997,7.814987999999999,1.0735819485632925,0.7135169925454672,1.880639132559983,0.3924542877545063,0.7626475581190049,5846.326005747127,45688.96757900173,0.21899813721915823,2.366223718629951,5.438948744764282,4.928908861224685,0.9668434419967413,4771.426005747127,37288.636977801725,12.971538357344409,6.028382467641824,2.5,0.27172839980008784,3442.7149425287353,26904.77596328275,0.08799646591056873,0.8734979936441216,1.1278222271759202,1.2833440657970148,0.9908133694514667,390.18160919540196,3049.2645936827557,0.27172839980008784,"CurrentSlice","Yes",50.97699999809265,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",3,2,"D - 3",1,1,,,,521,0,20,7,10.003184639999999,0.6533396483785485,0.36678710938203246,1.5939195801350223,0.23563984125761683,1.5929877020054377,11.381585227968612,6.141688862194176,13.87089765520842,8933.177083333334,89360.21978639999,0.1287887191571912,276.73448061422255,3197.492080676925,6339.605993285941,608602.1753554503,2.598675537893626,1150.492434566873,11414,171.252125,452.08812499999993,2.9924260288238522,1.0975832931518554,0.962458289521513,74.24470403110834,3,67.21740969875393,1,74.0279629209589,3,71.1216773118655,2,0.2949265669960071,-0.9259295701616397,10.416666666666666,4.564348191467836,20.782608032226562,85.28260803222656,0.012600847519934177,92,0.45808020327654114,9605.520833333334,96085.79845919998,0.03609062008733519,238.20858633056343,3696.314023534909,8550.181970774092,820817.4691943128,2.598675537893626,346.6692031368167,10270,-0.4695496262361129,-0.6234433217751345,11.284722222222221,4.506585926421174,26.037036895751953,93.38888549804688,0.010847928933799267,54,0.45808020327654114,0.09836316714695745,-0.6626660770833266,10.633680555555555,4.5499076252061705,24.44230842590332,1378.144287109375,0.0007283837767317891,104,470,0,127,139,984.1674887999999,3929.3883536262574,17819,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,70,1.1030297348571427,77.21208143999999,2.222217501225802,0.6374440002469772,1.3588763611918688,0.4275038448515197,0.4600902661764484,6322.315726012548,488159.15672627353,0.24308642099356098,1.1305283960313155,5.9907921050880875,4.133652869165451,0.9721885552559923,5266.976863453307,406674.24652355246,20.166376000459888,2.8826323531993445,5.942857142857143,0.11586019751077824,3159.4321778510703,243946.33462039338,0.07444824548830466,0.6676189300331373,1.2181783603214582,1.151816416040194,1.0012011347374339,565.861087803677,43691.31239522449,0.11586019751077824,"CurrentSlice","Yes",63.73399996757507,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",3,3,"D - 3",1,1,,,,720,0,60,44,150.04776959999998,0.6435812720103874,0.5242064916194504,1.4185450594892213,0.3274701342510178,5.820313598804787,1.1312902295261142,22.665065876806974,54.12750455191018,23251.44722222222,3488827.7956665596,0.17240766784957975,8657.321157617915,3024.5023071645396,20704.522664870412,29814512.637413394,2.2313598953908076,4008.7277897109225,35007,243.49431666666666,446.990575,10.308971234893798,5.404029643249511,36.939417150827694,37.03015381394824,4,29.769215676676065,2,29.769215676676065,2,29.769215676676065,2,-0.2702134565164202,0.4244702059787784,0.7677469135802469,7.202229545098981,141.75218200683594,549.9601440429688,0.002139384625479579,2058,0.3924511121633157,6779.247916666666,1017211.0294612799,0.17482480096062636,2688.8773221806705,3038.1687555961594,5779.880711123941,8323028.224018475,2.2313598953908076,1185.180667693991,10699,-0.08919534185410101,0.08791356347065804,0.9616126543209876,7.028286949668977,351.2476501464844,52.7259407043457,0.02220783941447735,1704,0.3924511121633157,1.2879393271618604,1.565202107596705,0.777391975308642,7.194527909759427,117.0775375366211,305.275634765625,0.0047975159250199795,1883,688,0,134,89,585.81150048,4437.050515830665,22428,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,2.042316864,51.05792159999999,2.142920068848756,0.6979280021385508,1.458759470705638,0.44414173267912466,0.6355516711692609,5769.3270702531645,294569.84923774377,0.1978393871444947,1.5515588964659468,5.772980180113097,4.560429961090302,0.970209646902218,4769.959864710439,243544.2368075322,15.894149381471461,3.5799329267565048,3.76,0.08313667660226738,3608.2518328797455,184229.83919623034,0.08584111810089379,0.7734834431089062,1.4167093495032543,1.4147070823017842,0.9940884880804666,1061.3272755279363,54189.164825846965,0.08313667660226738,"CurrentSlice","Yes",76.47699999809265,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",3,4,"D - 3",1,1,,,,113,0,37,60,181.09932191999997,0.7549818089687074,0.6570885387072766,1.2441056811607418,0.4334724100245748,5.988211118902297,2.0863344370664425,20.65163298918514,54.902876689757186,17207.719792865362,3116306.38627728,0.15908886963830057,10026.672382799887,3034.620773113005,14998.178867598459,26066834.871886123,1.6950421453211129,2737.556690899562,25275,41.73165086306099,444.12952474108164,10.009009719085693,6.576805570220947,101.3823675304649,44.676258824325316,4,39.588235992390025,1,43.57562302001322,3,41.57508311975104,2,-0.18253394299553585,0.2422895950538435,0.6819737777771893,7.338631651484422,235.346435546875,304.4476318359375,0.003697505686432123,2263,-0.012982715730995246,5405.845224395857,978994.9045425599,0.2132203339310108,3310.3860345290573,3189.209919834625,4335.332768879844,7534808.352313168,1.6950421453211129,1152.6361239250448,13784,0.6888394755285437,3.207784964316348,0.8607436030197535,7.162929664378802,464.0307312011719,35.51873016357422,0.03480466082692146,2082,-0.012982715730995246,2.7577849989046577,13.650274483790998,0.9554253993519263,7.070983268291135,410.9569091796875,47.04713821411133,0.024530142545700073,1485,68,0,99,160,878.9256503999999,3367.2107883817425,13784,1,1.7713972799999997,1.7713972799999997,1.2503645434029416,0.9243033481492031,1.0282273134560733,0.9070570065048607,0.5384093944072088,8262.176470588236,14635.596926879998,0.1856770418550952,1.264891881500878,0.8936896234329519,3.1214416205106836,0.9637712815009499,0,0,12.050023438357888,,,3646.8823529411766,6460.077480479999,0.12588418349449415,0.8085937813520825,1.6505158656432886,1.5559245078874384,0.9934150039547073,1437.3414276742728,2546.102695413523,-0.20082655553520232,-0.20082655553520232,29,1.185722317241379,34.3859472,2.433557602920367,0.7227712074209195,1.3405630589285995,0.5089011340986496,0.464420203379842,5833.50349253939,200590.54308547504,0.20824741779772676,1.730424138194956,5.449262605475705,4.267883086964008,0.9357534269108448,4762.991037023376,163779.95831315903,23.946254888993654,2.686929391027979,3.9310344827586206,-0.03311703135265485,3144.729943188543,108134.51778474022,0.11006352836821567,0.8603390292781756,1.4232503717072686,1.235025162688771,1.0024129154091503,935.1890179216393,32157.360192273336,-0.03311703135265485,"CurrentSlice","Yes",89.29999995231628,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",4,1,"D - 4",1,1,,,,662,0,32,4,8.856986399999998,0.25686657288262027,0.1206279534366723,4.315465041292201,0.028651477151779847,2.466419006272723,5.226238395865307,10.006799999999998,20.815848827604206,11384.470588235294,100832.10117119999,0.16763246071475704,344.0510704454279,3378.404270821342,9037.196394686907,768161.6935483871,1.4341715062204432,1908.4068186406598,15492,218.76725647058822,452.41749176470586,4.896809222030639,0.5906920748233795,0.10653118153060222,68.52711593866425,4,45.454884519932264,1,70.75713297205309,3,63.61822695630181,2,0.4959838542896706,-0.8490859078301449,12.04152249134948,4.426341911065377,16.387388229370117,139.5765838623047,0.00799892283976078,111,0.7344443031756522,6498.1882352941175,57554.36482463999,0.04358241604079698,183.0764897910095,4530.970115575073,5483.655977229601,466110.7580645161,1.4341715062204432,283.2067431820006,7079,-0.17835471823442206,-0.6344137609583158,12.59515570934256,4.393723220215497,30,45.75,0.022250566631555557,48,0.7344443031756522,0.1298553652986174,-0.8570457371872329,12.04152249134948,4.426341911065377,23.352941513061523,69.9117660522461,0.014848502352833748,68,586,0,183,108,1406.80203984,3038.9399303755276,15379,2,1.1982981599999998,2.3965963199999996,0.522310448183471,0.10178054944531963,3.504475810939262,0.02976194396408849,0.7934354822059647,8784.579166666666,21053.090103582,0.02749396411686418,1.0572599860738712,2.201666713827961,3.095030708357401,0.9837843646165856,4794.6114247311825,11490.748096340707,16.319644685430582,23.74141028414277,1,4216.470833333333,10105.178482553998,0.08666318799071333,0.8884745232138955,1.7963264985925103,1.8374264378944392,0.9732601645646688,1869.1966397849455,4479.709788264965,0.19871955053999182,0.19871955053999182,61,0.7652709560655737,46.68152832,4.211487187883498,0.656928372319551,1.6388124114930527,0.36345660050713996,0.386328168670671,4907.559496336806,229092.37761033152,0.1832273573315377,1.5788241285185431,4.837263140059489,3.096558107508788,0.9737942654015649,3893.0272382722897,181732.46127393926,21.366273687972377,3.2986064816552902,3.3442622950819674,0.06793601618375246,2791.2411618074552,130299.40334286442,0.06079555662410789,0.9239400780854625,1.1891415027180614,1.0546544566252547,0.9993000898445477,443.9669682590679,20725.056601930217,0.06793601618375246,"CurrentSlice","Yes",510.62399983406067,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",4,2,"D - 4",1,1,,,,104,0,52,77,231.63624431999997,0.3446628098646616,0.8973194698100883,1.821136386526687,0.27340491873595585,8.193784927283568,5.523490947494859,27.026669761552196,91.89904055199719,37295.07332433648,8638890.716488319,0.3189743139816862,23940.014174957905,3143.392570729651,34843.543056956805,77457196.21561497,3.770733161274767,11896.170428526913,63253,42.8589241565452,441.38478380566795,12.197021347045897,10.944624728393554,69.63543929717297,33.18554871278234,3,11.990993445385078,1,44.05094802417545,3,40.03498892400475,2,0.4225146001539272,-1.1397361582046186,0.4806010204120866,7.6607711746139096,100.97297668457031,1509.72802734375,0.0009746055584400892,3404,-0.01472415012823242,16501.71614934773,3822395.5536695994,0.2920571402560883,7198.022089917697,4376.261974413754,14972.171336513504,33283136.88106952,3.770733161274767,4819.444027896207,39728,0.5001079686414962,1.2029470506181648,0.5182396687475173,7.60393975898994,213.09368896484375,307.6441345214844,0.004979480989277363,3330,-0.01472415012823242,1.0452270993882353,0.188446693542637,0.7529753250329996,7.597552355642502,95.01608276367188,1078.4017333984375,0.002095649251714349,3482,43,0,310,360,3617.40164544,5826.637544648001,39728,1,0.10419983999999999,0.10419983999999999,12.566370614359172,1,3.1415925460576575,0,0.2282540689670175,6003,625.5116395199999,0,1.1407125890736343,0.9843276890739443,2.120122857900554,1,0,0,58.241833691813426,,,2205,229.76064719999997,0,0.8464491362763915,0.8994382118548415,0.8362096920771592,1,0,0,0,0,225,1.727401792,388.66540319999996,2.306455163587737,0.659503881923625,1.4891275059251927,0.4412592935102644,0.5897658657471664,8614.84075844004,3348290.5568828913,0.20992777233727858,1.8537415339136467,5.632290526013986,5.682467132891758,0.9527700177805503,7085.295945605814,2753809.405490209,49.628518272001166,3.1210288990558306,4.506666666666667,0.08758242886886265,3371.1269063025093,1310240.3982764333,0.08250506613257923,0.8999310490637304,1.3751112728074706,1.2569212452461789,1.0002340297834942,919.5966389228302,357415.39844830654,0.08758242886886265,"CurrentSlice","Yes",523.3139998912811,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",3,2,"D - 3",1,1,,,,741,0,73,16,98.78144832,0.4656910653846081,0.23731336010005383,2.308642726296357,0.10654795726742583,6.024571033093454,6.827473979487004,23.243841558572026,51.62899531041683,18150.371308016878,1792919.9653516798,0.2520900678674506,2720.802337721915,3197.492080676925,,,3.396775393882649,4575.528334857403,26313,251.0798329113924,450.6570620253164,11.724349566650389,2.7823447906494136,-0.2112177217315485,25.084906522485934,3,9.662700218431196,1,44.704212455927404,3,9.662700218431196,1,-0.015438828746502039,-1.1419159492096087,1.1038117110861863,6.822183114127767,66.29198455810547,342.6259460449219,0.003756856080144644,1048,0.5621177576645899,12555.548523206751,1240255.2675744,0.15180370431314053,1584.0678327984258,3696.314023534909,,,3.396775393882649,1905.978775506166,18368,-0.3311094843721846,0.15352552743762482,1.2150830529295518,6.7527078681503685,128.37570190429688,172.96543884277344,0.00640078354626894,897,0.5621177576645899,0.2985651377040643,-0.4318065166698273,1.1282914062917269,6.810842864322526,78.0731201171875,613.8606567382812,0.0018053582170978189,1012,560,0,286,162,1537.6770388799998,7837.857423595582,50065,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,59,1.5135468284745761,89.29926287999999,2.930525542249559,0.6901572264007512,1.6260362859018882,0.43129169400999345,0.5481575781555621,9349.783468411708,834928.7718167752,0.18794518378157446,1.6840632248683283,,6.113070105192506,0.9680387829136953,9349.783468411708,834928.7718167752,56.26246862093329,3.369731904577748,3.864406779661017,0.05418668398799538,3418.2125646753425,305243.8623926623,0.07161985494029185,0.8603569947311419,,1.246158525924054,0.9968399334096374,3418.2125646753425,305243.8623926623,0.05418668398799538,"CurrentSlice","Yes",63.73399996757507,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",3,3,"D - 3",1,1,,,,997,0,30,8,17.818172639999997,0.5183696809474919,0.28365082015814974,2.0700966358154163,0.13900523140748877,2.4229081259943275,8.360353691302201,9.366763863789883,20.783405793142457,12746.935672514619,227127.10044383997,0.24871991515243283,729.4292959623158,3024.5023071645396,10133.218691382543,1732780.3962264147,2.6834377870183537,3170.4167589213553,20075,326.84727017543855,451.9728561403508,4.660191036987304,1.3218670097351073,2.1664534619355824,16.562446095219737,1,16.562446095219737,1,49.60888786878079,3,16.562446095219737,1,0.3919231110523758,-0.8825172929520511,5.847953216374268,5.14166355650266,23.598424911499023,178.02755737304688,0.007055692374706268,254,-0.029998500181008164,8152.736842105263,145266.87254111998,0.07145896873537207,320.92196960069754,3038.1687555961594,6048.793445878848,1034343.679245283,2.6834377870183537,582.586167107716,9495,-0.5454658599480529,0.7124905650841598,6.258335898225095,5.098068702997607,37.28571319580078,71.4857177734375,0.014479488134384155,105,-0.029998500181008164,0.9124896124852387,-0.08763110854865852,6.258335898225095,5.093021649094944,27.69354820251465,123.28225708007812,0.008573338389396667,124,983,0,165,92,700.5355243199999,4440.975606128217,13213,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,64,1.6916192774999999,108.26363375999999,2.8767733325041522,0.6686440543359904,1.544898200191134,0.41105538465650265,0.5615521791936813,5630.669937661501,609596.7879544266,0.20377145869809923,1.2836051073030363,2.676245923612081,4.450826859361117,0.9657108766075403,3526.7265414350854,381816.23065359954,23.32803755002404,3.019159898644588,4.96875,0.15132990344744385,2922.677732176038,316419.71159481385,0.07700236832449749,0.842272954688073,1.1182074238619908,1.1459102852295173,0.9972562086076281,308.9607510439623,33449.21359723807,0.15132990344744385,"CurrentSlice","Yes",76.47699999809265,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",3,4,"D - 3",1,1,,,,234,0,63,61,245.91162239999997,0.7238715854001406,0.49136029171671397,1.2845852910252076,0.38889534042469154,7.090568676245786,0.4063824938113009,26.05697905437236,65.33767779331649,15782.097881355932,3881001.2948798398,0.17027262515552744,7359.044828611014,3034.620773113005,,,1.7803417201432434,2687.2592367199622,22341,85.29183,443.73893491525416,12.727655616760252,6.253864576721191,44.790119374793505,37.78948374270777,3,15.887698775386284,1,29.724814511249175,2,29.724814511249175,2,-0.5691314385548772,0.20115864522469407,0.5296610169491526,7.600809751423933,355.39935302734375,255.88543701171875,0.004484712146222591,3160,0.04256009539999803,5677.8834745762715,1396257.5370311998,0.2156541406409914,3081.6561651508105,3189.209919834625,,,1.7803417201432434,1224.4590813694322,10078,0.028758850591479406,0.05572865975242003,0.6557023843723069,7.428972831765025,634.4338989257812,38.11347579956055,0.03295760229229927,3102,0.04256009539999803,2.9399488270979317,11.455172543131754,0.5623384085033036,7.556287388074341,309.7655334472656,139.72064208984375,0.010300278663635254,2495,217,0,80,63,395.959392,5174.021578947369,13919,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,1.02463176,12.295581119999998,2.911526666606853,0.6465578634623099,1.6053625749142946,0.4208845896653209,0.47162147033612034,6823.301995439201,83896.46319118056,0.1626920017254431,1.1787803560574475,,4.992035270198494,0.9702563060845059,6823.301995439201,83896.46319118056,10.639654356553972,2.826347188243617,3.5,0.09042555721979806,4909.063573224162,60359.78938781473,0.14946472633854266,0.607164193922081,,1.9279293127547237,1.041642725910925,4909.063573224162,60359.78938781473,0.09042555721979806,"CurrentSlice","Yes",89.29999995231628,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",4,1,"D - 4",1,1,,,,921,0,40,34,106.28383679999999,0.8169980958802859,0.9194034288223286,1.0665548467475605,0.896334638807289,4.247518579935923,1.92971381769125,13.108223989541832,40.43226041388912,26230.457843137254,2787873.7005892796,0.16234610540981778,5863.2371822608475,3378.404270821342,,,3.0956983402849954,4258.412673949742,41962,303.7114435294117,448.4897752941176,6.254025272369384,5.74997227935791,9.028850104823354,26.18921414235192,2,11.38608972062503,1,47.34542492526126,3,11.38608972062503,1,-0.05530905258081476,0.2716050936365111,1.0553633217993081,6.875398657389767,104.44551849365234,698.9671020507812,0.001616604975424707,1551,0.10868527172199463,14026.516666666666,1490792.0082724798,0.16501531349326928,1978.037306619427,4530.970115575073,,,3.0956983402849954,2314.5900449685664,21224,-0.0001648429798795124,-0.08064457449688556,1.0880430603613993,6.853139875113608,143.715087890625,215.18321228027344,0.005250504240393639,1239,0.10868527172199463,-0.35919807869288467,-0.6958151413808848,1.0226835832372165,6.8976574396659265,63.593658447265625,1021.0972900390625,0.001179983257316053,1388,873,0,95,55,351.04926095999997,9289.774116948649,21224,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,1.3407046079999998,20.110569119999997,1.640080135818305,0.6717826620091925,1.3160353881555278,0.5011375994762658,0.5195015083164001,11904.921683579578,239414.75038581382,0.1431041720841276,0.9901072455253309,,7.511734047455248,0.9825868740701597,11904.921683579578,239414.75038581382,10.008546746313744,3.004408781536423,5.733333333333333,-0.009671131873932811,4741.203292029608,95348.29651633296,0.08188248552359424,0.5575812801868438,,1.7914364584919684,1.0014854295925606,4741.203292029608,95348.29651633296,-0.009671131873932811,"CurrentSlice","Yes",510.62399983406067,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",4,2,"D - 4",1,1,,,,323,0,31,13,18.234972,0.35571312918583403,0.7286423865838295,2.322118940056938,0.237606888709337,2.5960008370049112,4.944271416209786,10.022407183905472,25.38093020694456,15111.851428571428,275564.18766815995,0.19173412871710954,824.5877006874337,3143.392570729651,12540.205120458393,2194535.8960802187,1.8905527900492327,2897.45766695955,20637,110.8679657142857,451.47730285714283,4.196125401306152,3.057474826812744,16.575738189262875,4.657191295371458,1,4.657191295371458,1,11.920071574191418,2,4.657191295371458,1,-0.2056819312843319,-0.6614573833608737,5.844897959183673,5.14894260979643,23.433332443237305,234.35000610351562,0.004955995827913284,240,0.06197911157302077,8273.554285714286,150868.03074048,0.16294200322201408,452.7993186327767,4376.261974413754,6931.696491730695,1213046.8860528716,1.8905527900492327,1348.1095090803656,11306,0.1573576884443782,-0.8938480730297629,5.779591836734694,5.156864291859972,30.227848052978516,73.50633239746094,0.015258466824889183,158,0.06197911157302077,0.8446666149608516,0.4861464282772787,6.106122448979591,5.1172558815422615,35.050418853759766,95.82353210449219,0.010859929956495762,119,244,0,124,66,417.21615935999995,3419.453046953047,13152,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,0.8075487599999999,3.2301950399999995,2.0598299072640156,0.7756585312056157,1.0155981679800932,0.6624436061275267,0.34656422284722,6700.765625,21644.779886077496,0.2002621296384272,1.9470609489308288,4.993648101195094,4.41991691976072,1.0346830349189369,5358.907831016409,17310.31749556636,11.603985040765874,10.343387645062464,2.5,0.18685771727786557,3066.607142857143,9905.739182485713,0.08612718148512252,0.8690047479804073,1.1924684717266927,1.1433813605399,1.0081217557798923,494.9608347441076,1598.8200333846758,0.18685771727786557,"CurrentSlice","Yes",523.3139998912811,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",3,2,"D - 3",1,1,,,,870,0,84,21,131.70859775999998,0.45299234417519274,0.28415708836261,2.269435802974799,0.12082201319690833,6.897251604543166,3.5988031777023815,26.80017718448891,60.445860413889115,16208.348101265823,2134778.80042368,0.1551858214325509,6320.589271286508,3197.492080676925,13585.183632685528,17171672.11171451,2.36308882276108,2515.3058141596634,23448,295.687864556962,450.3072768987342,13.268972145080566,3.770472490310669,3.663563683603021,46.316293858555134,4,28.79951864264102,1,40.52697683529941,4,28.79951864264102,1,-0.3744916677636463,0.7015678902446281,0.9275857234417562,7.030146442664884,126.84158325195312,267.4991760253906,0.004327288828790188,1212,0.07133985976911456,8734.718354430379,1150437.5062905597,0.1487062296583707,3144.7064227737283,3696.314023534909,7595.248998340387,9600394.73390225,2.36308882276108,1298.9070336151096,12035,-1.070022614877826,0.7536251137703385,1.0915718634834162,6.904805019108894,190.78311157226562,74.46833038330078,0.015617326833307743,1042,0.07133985976911456,0.34307042747123545,-1.1802138022157427,0.8437149495273194,7.09597299625187,53.209991455078125,846.553955078125,0.0016345048788934946,1381,839,0,322,103,1589.7769588799997,3943.659631644491,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,131,1.5303854363358775,200.48049215999998,2.101864444844767,0.6447608716742469,1.437034563749887,0.4276231543020815,0.5545719036763446,5035.507334090173,1009520.9886136873,0.2207061891250184,1.286162507659016,4.419168718471865,3.2923125388414367,0.9673874782632941,3896.0379780001804,781079.6113035274,35.9936950704467,3.010727705261564,5.190839694656488,0.12403986857184716,3153.549234365734,632225.1025564334,0.07054311415781002,0.7285927078068012,1.2021927226211984,1.149671704427598,0.9986718581999564,530.384765785439,106331.79887883112,0.12403986857184716,"CurrentSlice","Yes",63.73399996757507,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",3,3,"D - 3",1,1,,,,940,7,55,39,145.46297664,0.7673878372248926,0.819293593404149,1.286372884048343,0.37411600571519443,5.457198147035192,2.691059020226129,18.946462698878648,48.80605572430596,27948.881088825216,4065527.4369379194,0.15100196797269347,10408.706745020461,3024.5023071645396,25155.562907007035,35117165.81818182,1.6578858410919155,4220.336047047404,39239,312.1080593123209,444.41836848137535,8.442155113220215,6.9166035987854,27.079635639448824,24.479672537764714,2,16.562446095219737,1,33.31273849987847,3,24.479672537764714,2,-0.6077439645061253,0.42687767829850376,0.7984335103981084,7.166381487263627,152.7390899658203,778.2432861328125,0.0014459063531830907,2154,0.2213727283235003,5036.936962750717,732687.8437497601,0.17993345404963995,2192.382917495995,3038.1687555961594,3075.9142354779897,4293976.272727273,1.6578858410919155,906.313465538039,8462,0.12765840861134678,0.1997042520525949,0.9954762276171789,6.988343741670817,505.7161865234375,30.730091094970703,0.03802492842078209,1871,0.2213727283235003,0.6636116872335462,-0.04354563855089966,0.7871446047240992,7.1734642312450125,128.52723693847656,296.2392883300781,0.004617216065526009,2056,900,0,203,136,827.3467295999999,3528.959571788413,9957,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,49,1.0866554742857142,53.246118239999994,2.2453364586133002,0.720979245911596,1.2291652885590814,0.5069568125481511,0.432501451892616,4217.3150980034625,224555.6583636295,0.21947612265271627,1.249061217869958,2.1505692103164207,3.3336245101197766,0.9651513058230511,2256.2923707307355,120138.81035593864,24.997953020281855,2.703983404638088,4.653061224489796,0.188922140275691,3251.1959988272647,173113.56657497142,0.0826544049176137,0.725124120284315,1.1639189620392791,1.274714243495943,0.9973383014000853,457.8778170090827,24380.2163839387,0.188922140275691,"CurrentSlice","Yes",76.47699999809265,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",3,4,"D - 3",1,1,,,,440,0,53,28,85.23546911999999,0.5483806427027242,0.9062743794428458,1.6175535839408268,0.3188252988454179,4.684352535799258,7.1042902219968225,17.568150900991256,44.195092965625264,26915.32151589242,2294140.0559227196,0.22882523731283425,7415.364928759742,3034.620773113005,24428.835801606707,19982787.685714286,2.3870644531441174,6158.904833225317,38584,152.45512518337407,449.6761848410758,6.941847592163086,6.291218618774414,20.429982327726258,56.0890176297586,4,49.26759238793359,1,49.40485001468886,2,49.26759238793359,1,-0.615082569234249,-0.39300820161998873,1.2673286266820498,6.68144129086094,58.72618103027344,693.37548828125,0.0019231833284720778,1249,-0.08698051262102718,7612.849633251833,648884.80983024,0.22240068080229647,1920.0742435441205,3189.209919834625,6445.735347537548,5272611.514285714,2.3870644531441174,1693.1029412807206,11227,0.08229332704292167,-0.8910588958938317,1.3928658963062153,6.612372500234626,124.52022552490234,59.30543899536133,0.020613068714737892,717,-0.08698051262102718,1.5013938250209236,1.3158394213409839,1.2792845571224465,6.674662345329791,48.12926483154297,615.519775390625,0.004645131062716246,1114,359,0,334,276,2184.6538454399997,3413.747448249547,21254,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,1.542157632,154.21576319999997,2.8734762183470655,0.6775458378922723,1.5376749645086674,0.40807269451123207,0.5530428933685628,5289.895009568195,815785.1961484303,0.2225354624017098,1.8100982383447655,4.53245673908509,3.8701705539433107,0.9659514578515132,4122.780723853909,635797.7758353789,55.24057966159841,3.033510067646547,3.9,0.12678944016026814,3029.24073169321,467156.6713545947,0.08462804551411568,0.9569544778436474,1.2182819769641875,1.1896692546163585,0.9992736057868987,542.7550174074954,83701.37924012617,0.12678944016026814,"CurrentSlice","Yes",89.29999995231628,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",4,1,"D - 4",1,1,,,,953,1,41,56,147.44277359999998,0.7304345982164394,0.8191760491560283,1.3513543828227947,0.34052451072293854,5.631271027008186,2.7211508892939977,19.785823179236186,50.36467200017403,27628.473498233216,4073618.7629135996,0.14310283220463585,9113.130909859308,3378.404270821342,,,2.6510354819775883,3953.712807087896,39910,314.0360370318021,443.6891703180211,8.712772741699219,7.137294751739502,116.84245669014729,22.90147603784944,2,11.38608972062503,1,37.851379943092496,3,22.90147603784944,2,-0.4059878792813819,0.61081698235092,0.7826293248760753,7.181646450352674,160.1668243408203,761.9804077148438,0.0014523204881697893,2146,-0.0081431674568295,12011.762544169611,1771047.5853369597,0.15721142141006966,2254.419066955952,4530.970115575073,,,2.6510354819775883,1888.386263209139,23159,0.8800448452979268,2.6022780105923005,0.8575459800971419,7.114877143855794,314.5521240234375,154.954833984375,0.007154394406825304,2081,-0.0081431674568295,0.7204427821319924,0.05394438052729811,0.7926182122388843,7.173069170369289,160.67642211914062,204.48855590820312,0.006176519673317671,1879,898,0,153,207,1204.9669497599998,8086.523694223452,47487,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,70,1.5213176639999997,106.49223647999999,2.4794899901512655,0.7354318331645645,1.4201484741415822,0.47458344490961923,0.5257272064312666,11664.840824950385,1242214.9876321745,0.1701085392417231,1.3233847504827936,,7.360248501574282,0.9615871512798498,11664.840824950385,1242214.9876321745,23.819093884247078,3.0534572467456216,4.628571428571429,0.1729229495088686,4485.328491441357,477652.6624010546,0.0872345026889129,0.7859573105386843,,1.6947556333196458,0.9966071244903142,4485.328491441357,477652.6624010546,0.1729229495088686,"CurrentSlice","Yes",510.62399983406067,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",4,2,"D - 4",1,1,,,,1242,0,24,8,15.317376479999998,0.6440287718329784,0.36491114678217046,1.6567234079829452,0.22435008178476856,2.0096816475038857,8.646373942008212,7.431414078087695,17.287989517274383,12923.054421768707,197947.28984975998,0.2232249653333633,655.2798710488963,3143.392570729651,10286.301047860266,1512086.2540354591,2.6027710931979047,2884.748375300487,18807,404.46181224489794,451.9309795918367,3.7765472167968746,1.3781041757583616,-2.3884349063895622,87.6285356614442,2,48.45315947390634,1,56.869204395987076,3,54.737051803868,2,0.11333402405465239,-1.0432959205404397,6.895275116849461,4.981002012893566,22.715517044067383,174.13792419433594,0.007014818023890257,232,0.5508358730113809,11390.408163265307,174471.1700976,0.10445697448083775,444.93059998879727,4376.261974413754,9953.200171733155,1463120.4252447737,2.6027710931979047,1189.8075748365302,13313,-0.31377741053460817,-1.0254247960377025,6.895275116849461,4.981002012893566,18.418603897094727,131.7558135986328,0.007998272776603699,86,0.5508358730113809,-0.22440500629167223,-0.45841679209861574,7.635707344162155,4.91142848451531,32.79999923706055,37.29999923706055,0.027040816843509674,40,1140,0,174,154,1223.93132064,3858.71403030819,37468,1,1.0419983999999998,1.0419983999999998,0.8384161921126929,0.5376088851547824,1.621061905967316,0.3588345896230375,0.5184935749149107,5125.5,5340.7627992,0.2596630030335173,1.50502634078936,1.663052759583244,1.8102098464383292,1.0404513377876787,2043.5172003175444,2129.3416531033604,34.07218497384244,,,2788.4,2905.5083385599996,0.08470490801663623,1.0519462074475168,1.0575126318570984,1.0574544695636965,1.007714128870454,151.64662609155857,158.01554175280228,-0.5068219751606868,-0.5068219751606868,53,1.3054470520754717,69.18869375999999,2.629267683508953,0.7130854619843741,1.4007199123011043,0.4551517078214716,0.486511627663785,8006.889666384926,553986.2370976151,0.25115375841446996,2.595083124608724,5.571141903997551,5.281454253387947,0.959066149502309,6569.681674852775,454547.6935020725,23.425101732681306,3.3810455745829544,4.0754716981132075,0.04690962548043224,2955.0573163096115,204456.55570139314,0.07669736755874128,0.9559775425466869,1.120718132211717,1.1017901209372052,0.9993522435984195,318.30394240116993,22023.033993395224,0.04690962548043224,"CurrentSlice","Yes",523.3139998912811,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",4,3,"D - 4",1,1,,,,49,0,79,60,238.40923391999996,0.5689795905470214,0.4152424987014978,1.6501766895444714,0.24077554724154748,7.912921054779033,3.0423881706796982,30.28304462632514,72.56348358645894,26454.422202797203,6306978.531165119,0.18985697169778382,16651.855749405426,3405.294193357104,23811.25504448845,54480151.54178958,2.163662579355723,5022.556487437692,42233,29.95451381118881,444.68902604895106,14.615847953796386,6.069121224975586,39.59769135873321,31.384618090723293,2,22.30379368007006,1,34.440447413069315,3,31.384618090723293,2,-0.13826260080568356,0.4389456981887361,0.49971881265587553,7.639163922685595,189.54090881347656,719.8547973632812,0.001685285591520369,3361,0.2586878994132978,10001.990821678322,2384566.9694712,0.20760625851038714,5301.123535014074,4622.712856020567,8836.373319220113,20217622.154375616,2.163662579355723,2076.4758921438693,17727,0.2075421683014021,0.6208846300924487,0.5768925130813243,7.533232924700711,416.83575439453125,113.44940948486328,0.01077783852815628,3044,0.2586878994132978,1.8048813957005576,4.068315603715354,0.4874932759548144,7.656586448209584,163.53648376464844,402.2819519042969,0.004970890004187822,3426,32,0,240,198,1290.6192182399998,5367.097367996124,28822,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40,1.2477930839999998,49.911723359999996,2.7259511186904493,0.7007288991668046,1.5158769274492276,0.447299353091246,0.5009758249868088,8389.301858080313,418724.5135240385,0.16165043800216863,2.3363212949389593,7.197302580295705,5.130433628854552,0.9687362024432261,7223.684355622103,360546.5351977702,42.40610465868255,3.3671132346954016,3.4,0.0028159027027984313,3861.5992861816585,192739.07529907237,0.09499877564912519,1.0242742209964573,1.460974298974163,1.343850733218686,1.000341181856913,1218.4321278729071,60814.047299328675,0.0028159027027984313,"CurrentSlice","Yes",536.0739998817444,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",4,4,"D - 4",1,1,,,,23,0,13,5,4.89739248,0.7278915781086258,0.3660922263474957,1.6516639044742838,0.20686524063584244,1.134627615094197,0.8615748052173222,3.9270314895605303,9.19504882760421,3162.425531914894,15487.639018559998,0.06478329988854241,52.64556188851501,3133.8809981399313,638.4255319148938,30006.000000000007,0.7706718495987283,204.8723616092258,3625,9.326859574468084,452.1397787234042,2.130941276550293,0.7801210361480713,-3.9191159241126674,54.892838226151284,3,47.774479580550185,2,47.774479580550185,2,47.774479580550185,2,0.4579838824735169,-0.6432928148611441,23.99275690357628,3.761660727596023,17.235294342041016,12.911765098571777,0.08394607901573181,34,0.5667528738573488,3180.531914893617,15576.313082399998,0.05185034676875249,61.1505436937783,4126.960023970837,1805.5319148936169,84860,0.7706718495987283,164.91168269631842,3561,0.22376800721294865,-0.5284735846337303,22.181982797645993,3.82065197700538,15.516129493713379,12.612903594970703,0.08602150529623032,31,0.5667528738573488,-0.254042609301735,-1.1226699136338703,21.27659574468085,3.8501476017100584,6.647058963775635,531.694091796875,0.0021749427542090416,85,16,0,23,12,25.320561119999997,2586.893004115226,3594,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",548.8069999217987,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",5,1,"D - 5",1,1,,,,517,0,79,37,229.76064719999997,0.5044563149139439,0.7063558523147914,1.395919191458375,0.3583886536324946,7.144601895437824,2.7050485647597147,26.862313601028486,75.65383944843789,34585.75192743764,7946444.746746719,0.25697585993901334,19978.023763486668,2706.0282066294217,32023.557622580018,70611944.55778894,3.2735364382389593,8887.703343190675,61643,178.6312250340136,446.9452201360544,11.671356944274901,8.244131282043456,14.650271122349023,68.18026530077913,4,66.49380457705237,1,68.18026530077913,4,68.761451266118,2,0.24574163545352842,-0.10019071830171278,0.4835433795589286,7.6529787324866625,107.96688079833984,1277.9166259765625,0.0010670559713616967,3442,0.4372109162496322,12662.842176870749,2909422.8139492795,0.33218418373331055,2692.5380333706125,3868.2453718715547,10912.042553755171,24061053.831030153,3.2735364382389593,4206.3958922675465,25274,-0.12637151388872184,-1.0233212913694258,0.5197422884497714,7.600001124108242,201.83697509765625,175.38369750976562,0.009586329571902752,3018,0.4372109162496322,0.8571184691555265,-0.3163821348540208,0.5004087802921622,7.629158851434899,113.3148193359375,422.13116455078125,0.0070747206918895245,2935,480,0,242,132,1616.3479180799998,10695.906266116555,52897,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,2.2939288305882353,155.98716047999997,2.7508956888035576,0.6846702853809866,1.7195966241664162,0.4080098713499688,0.7017645865889012,14919.151396447802,2327196.063103119,0.14624823545745907,1.5330050814854197,8.521335736809743,7.967405193696963,0.9819785386851742,13168.351773332224,2054093.801323866,26.78543358646249,3.5065182109866555,3.588235294117647,0.20403586205771954,3930.1764514651113,613057.0648494052,0.08410166702424293,0.9041170965188062,1.5339103845535662,1.6624187272084907,0.9967612561584266,1367.98214660749,213387.6506366374,0.20403586205771954,"CurrentSlice","Yes",663.2139999866486,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",5,2,"D - 5",1,1,,,,563,0,65,46,171.40873679999999,0.6512137483494471,0.5599773147028939,1.3944233736189633,0.36062427448423606,6.167709201863903,6.45906520373171,23.58429023566323,57.51215337951439,19144.47781155015,3281530.7583734393,0.2196205889091999,8970.178448286728,6702.647539712808,16134.132357004695,26540647.727272723,2.3712132853467125,4204.521491331754,34475,194.08462832826746,446.79640851063823,10.762868714904783,6.026962321472167,36.20395182708372,29.053821997148347,2,14.695560336492495,1,77.54636796036569,2,14.695560336492495,1,0.3686587737709535,0.46646573364723354,0.668508236250589,7.339126388758815,156.6704559326172,381.7447509765625,0.0032544899731874466,2288,0.26921994856738385,9457.675987841945,1621128.2941396798,0.2712768049675352,3677.5331849546715,3988.5387140360376,8161.599954784094,13425831.925619835,2.3712132853467125,2565.64812439994,17419,-0.3728377564423478,-0.18231470799024585,0.7128537245590858,7.291710349632335,238.36099243164062,103.45588684082031,0.014300710521638393,2097,0.26921994856738385,0.40896970801586663,-1.2065770202486363,0.6396836688500661,7.3709436456882775,61.98207473754883,1098.973876953125,0.0031611693557351828,2566,554,0,232,245,2038.4614699199997,4670.057302049788,39764,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36,0.7901821199999999,28.446556319999996,3.4548209392640223,0.6261352341188058,1.332439721212416,0.40343169240729837,0.356796523275855,10254.574050731404,291707.3182717414,0.15589455158289656,2.093884347975642,7.912015799364515,5.401400633468882,0.9736470753299964,8958.498017673553,254838.41840235906,32.916247727593564,3.317183542598175,3.2777777777777777,0.012158285530801036,3866.9475941587452,110001.34252372524,0.06612652822118588,0.9801850945679836,1.284552770619687,0.7384964099726719,0.9984042355197889,856.6021396132905,24367.381008341967,0.012158285530801036,"CurrentSlice","Yes",675.9470000267029,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",5,3,"D - 5",1,1,,,,24,0,12,9,8.44018704,0.9852476878946993,0.816818775799174,1.066143770846826,0.6641612605425586,1.1967239722629264,4.260364744928701,3.7782771311802947,10.37548137934035,2411.8765432098767,20356.68914208,0.03246572381693756,81.87406060363554,3252.437824973756,132.7954621287954,10756.432432432428,0.5053712370343237,78.30331773240194,2653,9.444888888888888,451.7326962962963,1.853661089515686,1.5141051818847655,-13.382556289403967,11.650769850557994,1,11.650769850557994,1,34.26354625279218,2,34.26354625279218,2,-0.058504294195294064,0.27958852921630495,16.003657978966622,4.210381995428883,21,9,0.1111111119389534,21,0.1595422505823007,2053.1975308641977,17329.37119056,0.11567709055114432,86.677005595488,4062.7510637783857,1060.9272605939273,85935.1081081081,0.5053712370343237,237.50791669716372,2883,1.2103464159570567,2.2486710218682173,13.260173754000913,4.353759810647695,22.727272033691406,6.954545497894287,0.1679292917251587,44,0.1595422505823007,0.28585726314045584,-0.9875430306286934,12.650510592897424,4.377334409473428,18.89873504638672,287.7088623046875,0.0035385016817599535,79,0,0,36,20,49.911723359999996,1941.4613778705636,2883,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",688.6539998054504,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",5,4,"D - 5",1,1,,,,541,0,45,32,97.84364975999999,0.7434525345898246,0.694414853181658,1.2325497320424061,0.46383966189957115,4.3810540526954584,5.002439561750345,16.389850137203815,40.66723365529544,25885.784877529288,2532759.6693196795,0.1559480147753239,6552.950523296912,5798.524055719225,22883.40466792656,21487516.983183037,2.210578061893648,4036.8367625517935,44741,180.66039999999998,448.5500230031949,7.196177085113525,4.99713225402832,-32.66381191977859,49.19572262039161,3,38.81831922901998,2,49.19572262039161,3,38.81831922901998,2,-0.07945601129205387,2.614976590466166,1.1398163364601728,6.79609586907306,102.95182800292969,675.6547241210938,0.0017020554514601827,1370,0.39677215642734825,7808.682641107561,764030.00942352,0.1649093744008696,1663.2236976940233,3532.416599854613,6120.854588463154,5747482.458566901,2.210578061893648,1287.724969239978,12076,-0.20704895574424567,0.07615418654388684,1.3167430513733935,6.688293323355797,195.5203094482422,66.97388458251953,0.01727917417883873,1034,0.39677215642734825,1.1383931143187112,1.2818473455577166,1.1534260837611898,6.789075982244509,65.10987091064453,338.9776916503906,0.004835617262870073,1165,436,0,160,200,778.26860496,4835.986209666622,25091,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,2.325145001142857,81.38007504,2.5102942780122603,0.6540969325920816,1.7041881110347343,0.4086503478438428,0.7239084206192226,7790.881674623561,634022.5353086261,0.21375340309657417,2.629264361850142,4.615921427788327,4.027426166399039,0.9548903970351217,6103.053621979154,496666.96172980726,31.553654006337087,4.281352226097045,3.4857142857142858,0.22241941408766794,3786.11075194225,308113.97710281104,0.07556495799515629,0.9812928791424637,1.2610364069923117,0.7585865497586519,0.9996135664041881,783.7305423395201,63780.05034673003,0.22241941408766794,"CurrentSlice","Yes",701.3369998931885,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",6,1,"D - 6",1,1,,,,686,0,43,32,97.11425087999999,0.7436281176430911,0.7710237084892645,1.1655585898950542,0.589110613748189,4.244422548501444,4.7121785924482396,15.175033653998925,40.510584827691225,36343.109442060086,3529433.8481155196,0.16849340729344175,7629.3105332855075,3456.893181407561,,,2.094550222346484,6123.574341531159,48100,227.15456781115876,448.6587502145922,6.723287965393066,5.183814420318603,-32.06013578402197,26.56638063623461,4,18.262157175371332,2,22.895049023037043,3,18.262157175371332,2,-1.2891299680608557,1.345137824539787,1.1374311554826944,6.795684486239929,83.82845306396484,1286.1324462890625,0.0009337409283034503,1434,0.4713188291642192,6123.62017167382,594690.7856457599,0.15269021046699602,1485.8611866471763,2923.5967256080626,,,2.094550222346484,935.0168528328178,10130,0.10407470612684662,0.8626442323782451,1.4459651126379192,6.6152814605933505,231.53799438476562,43.82854080200195,0.02629959210753441,974,0.4713188291642192,1.4714973823650161,2.1061005755081785,1.1650610620936102,6.778761217875033,94.73776245117188,293.31732177734375,0.004832928534597158,1144,573,0,170,162,594.1474876799999,4214.1094352858645,12381,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,1.4230721005714284,49.80752352,2.453879256826092,0.6805874844737748,1.3353950604191798,0.431829286546689,0.5033901537470707,6109.183664531081,304283.3090591316,0.20066085896304578,1.4307647993922088,,6.182381041833334,0.9752057214356211,6109.183664531081,304283.3090591316,25.972145898405103,3.078952283561569,3.657142857142857,0.29792777601099557,4378.530468617454,218083.75929870043,0.08468556204036409,0.8248535860477559,,1.475657690994825,0.9950326147328123,4378.530468617454,218083.75929870043,0.29792777601099557,"CurrentSlice","Yes",1121.2139999866486,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",4,3,"D - 4",1,1,,,,610,0,40,21,61.58210543999999,0.7194940396201123,0.6918108688785297,1.2943883901973225,0.45037212555793793,3.5618008735014177,1.459674850944711,12.920067479699942,32.79582786215298,20230.80372250423,1245855.4879752,0.14787361241536903,3011.43314275626,3405.294193357104,17747.32578132776,10488669.536764706,3.7933073293829556,2991.6020285129957,25825,204.32803045685276,450.2579350253807,5.859161585998534,4.053431667709351,12.524873998752339,58.28337450129456,3,36.72913879586368,1,65.48273945682486,3,36.72913879586368,1,-1.1501209667543828,1.0007282285565493,1.789390204448567,6.341939529861195,75.0653076171875,396.9605407714844,0.00288621848449111,735,0.00655910245823241,17535.370558375635,1079865.0386553598,0.1271215799970008,1329.04407999127,4622.712856020567,16476.623009356026,9737684.198529411,3.7933073293829556,2229.1240112136006,27871,1.0090612498735763,2.467629999039067,1.8008423017570379,6.337248178385323,82.56082153320312,322.55133056640625,0.0033297743648290634,633,0.00655910245823241,0.4097730715808796,-1.0015072417494488,1.7493078638689195,6.358359260026743,30.708223342895508,876.7506713867188,0.0015594401629641652,754,578,0,86,40,304.78453199999996,9765.158974358974,36062,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,1.4141406857142855,9.8989848,2.1096737841766378,0.6517519477880506,1.1793159539250755,0.40751178087205997,0.4810906299025183,17377.42729384437,172018.88864487052,0.11452224753086834,1.8575731624956167,16.413192464941936,10.62707468148187,0.9836894552241754,16318.67974482476,161538.36275008816,5.98384490642747,3.5975114743178023,2.857142857142857,0.2926423038512385,6123.0929292929295,60612.403836058176,0.1297151564940063,0.9122138515298299,2.465531433869835,2.1308588263006443,1.0183737659848853,3639.614988116459,36028.493445217,0.2926423038512385,"CurrentSlice","Yes",536.0739998817444,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",4,4,"D - 4",1,1,,,,342,8,58,52,142.96218047999997,0.6068757303019225,0.34372321086676355,1.7581094814343388,0.17855416778995714,6.324753624553367,1.783402504068438,23.393536707389924,54.408359172656844,26317.347667638485,3762385.4070158396,0.1622270076570997,11764.69714930457,3133.8809981399313,23722.38442108412,32547111.425727412,2.464573263661166,4269.384561592543,36353,119.5974,442.24329358600585,11.962602722167968,4.11182421798706,40.940849716443516,72.57013088682217,5,62.89259841246489,1,66.0808651176919,4,65.81788994453981,3,-0.42925862457441627,0.290791073273585,0.7968618517794457,7.159987058362858,145.17333984375,695.1547241210938,0.001647990196943283,2146,0.37172694867926187,10171.195335276969,1454096.2632192,0.21810807325127887,3180.3551627494476,4126.960023970837,8797.603196430618,12070311.585502809,2.464573263661166,2218.419817239655,21473,0.1035756439303257,1.1821684286453191,0.8733605895502724,7.094156383720202,266.0150146484375,114.22421264648438,0.011215215548872948,2065,0.37172694867926187,1.1385790488842924,2.3252268874182853,1.0890445307652425,6.91722340932859,362.6546325683594,34.559654235839844,0.032997891306877136,1274,237,0,299,170,2075.24401344,4786.248694516971,40459,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,71,1.3839499876056336,98.26044911999999,2.637456534370421,0.6593917756209586,1.4469995965587052,0.44029020016813114,0.5110991763967302,7963.909265198563,782537.3011493399,0.20940578829520273,2.1258025942688112,5.797870444924994,5.31664517549869,0.9676137707832438,6590.317126352213,647567.5206785961,26.370559861231282,3.9131130561437217,3.8028169014084505,0.10606828380536483,3450.742425051469,339071.50048299524,0.1006729002560168,0.9122692638931335,1.3297847010486266,1.2743095727934164,0.9950770436769011,855.7791784971046,84089.24642667014,0.10606828380536483,"CurrentSlice","Yes",548.8069999217987,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",5,1,"D - 5",1,1,,,,1025,0,63,31,149.52677039999998,0.7256564500933225,0.6840894823049635,1.342341714411827,0.3523059753242619,5.651986390005618,2.4363944126342334,20.932279550971028,50.886066207031575,21031.786759581883,3144815.14990176,0.17144461541338532,8942.508840934579,2706.0282066294217,18617.282162096424,26715799.90260837,1.7535276615718458,3605.786592452845,31347,340.14909407665505,448.5867244599303,9.332683602905274,6.3843906944274895,-13.995975994480148,22.02175768770041,1,22.02175768770041,1,52.16388151047062,3,39.96005304300306,2,-0.3694409930921757,0.23066954388349492,0.7697070499823963,7.199472848753154,166.63839721679688,442.4949035644531,0.0026199081912636757,2063,0.31723947337024105,6783.075261324042,1014251.3372059199,0.2850045108663651,2754.6762417613154,3868.2453718715547,5048.888734771218,7245155.334396698,1.7535276615718458,1933.2070470234,13113,0.43521438396352613,0.5449429071010901,0.8444924668261118,7.13075483501818,243.1255645751953,48.85586166381836,0.030005907639861107,1561,0.31723947337024105,0.8209098366246012,0.3353743673747407,0.8124415738930908,7.157695527776328,179.28778076171875,70.86261749267578,0.0197762418538332,1383,1023,0,181,34,363.13644239999996,4871.574175035868,13113,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,1.23303144,7.398188639999999,4.011899789663142,0.6646338377010542,1.4492936295875696,0.3304658535242506,0.43748507876466686,5175.958534073453,38292.71762789327,0.1310314445616896,1.8873251029584273,2.9846607933012277,2.7641625056875423,0.9946372575074047,3441.772007520629,25462.87856750911,23.79874905181096,9.5986213914583,3,0.393740674330787,2798.522299608993,20703.995885753924,0.06825102798513304,0.9467586281318803,1.1590461672856056,1.1837422407958924,0.9989952329905796,384.01770212353586,2841.0354014092463,0.393740674330787,"CurrentSlice","Yes",663.2139999866486,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",5,2,"D - 5",1,1,,,,1064,0,76,29,187.87231151999998,0.6626388021633273,0.41540229138656487,1.5354865826175563,0.2621104227517732,6.775860426732635,1.2235902458574568,24.570996580521513,59.68949296562526,15689.280643372158,2947581.42055632,0.22113157360067257,8436.006856371598,6702.647539712808,12735.280643372158,22961711,2.2605796168090535,3469.3953173314576,25438,354.6830795341098,448.9161517470882,12.51543885040283,5.198941976165771,-4.249804673293118,60.101212053877994,3,41.35974934218065,1,45.65529395852133,2,45.65529395852133,2,0.11580617524176182,-0.2714039470578036,0.6469158907828789,7.385806039421307,149.87098693847656,263.5685729980469,0.004780109040439129,1961,0.6839766505250987,9016.40931780366,1693933.66014624,0.35275879240789,4759.809499484809,3988.5387140360376,7650.40931780366,13793688,2.2605796168090535,3180.6176628036665,20557,1.1238582062484304,0.8105736023297911,0.6715251495858415,7.357821043741419,186.67869567871094,109.80122375488281,0.01460861973464489,1967,0.6839766505250987,0.8783337860577871,0.19316792093134172,0.7053628804399151,7.320797925898554,170.094482421875,111.14763641357422,0.011678952723741531,1524,974,0,204,88,1150.8872327999998,4329.7041195110905,20571,3,1.18093152,3.5427945599999995,0.934136138122065,0.45070870828905035,1.8996981675103788,0.2342938562555543,0.5947518884137274,11488.094035594035,40699.95705407098,0.14632741567382776,1.63286731971996,0.8422510702611143,3.784462782397908,0.9966572954488232,0,0,20.22458054144682,4.196614614532754,2,2940.825637325637,10418.741069825799,0.0720013790856998,0.9406700838417179,0.9955401615862008,0.7243886857337283,1.008659522527938,0,0,0.08616129543998592,0.08616129543998592,30,1.097571648,32.927149439999994,2.65627478031683,0.6567199476802504,1.409925086485907,0.4131644111766321,0.4607237413787055,7229.966399847936,238062.18409397177,0.2167224430774765,1.5752547652053048,5.292801171191754,3.808246437043576,0.9681490982761548,5863.966399847936,193083.69795893176,16.39093578966662,3.3673205057862137,5,-0.14072576284221447,3561.5010603083147,117270.07764349031,0.08931094834082827,0.8196649838402031,1.2056537103277978,0.6801632768762012,0.9995945609768686,607.5010603083147,20003.278197730328,-0.14072576284221447,"CurrentSlice","Yes",675.9470000267029,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",5,3,"D - 5",1,1,,,,1298,0,65,28,115.45342271999999,0.5747902000023222,0.66061839510865,1.821273226571683,0.16708895940971114,5.784968562141896,10.046697853342359,21.29501593519009,50.240466207031574,28859.334837545128,3331908.9844171195,0.23213360596699525,11485.582425426886,3252.437824973756,26501.23497380038,29363368.35097082,2.698812384997443,6699.22146164828,46426,429.08189999999996,448.32433429602884,9.655013214111328,6.378279334259033,15.474206695841117,66.85124374056578,3,39.26117054259512,1,66.85124374056578,3,67.23534821613063,2,-0.18817237584286645,-0.8180543084783443,0.9367383909603931,6.984816257770982,75.75634002685547,853.4923095703125,0.0015028150519356132,1814,0.37247397777503694,10964.602888086643,1265900.9321952,0.28256065388623575,3327.4483704590493,4062.7510637783857,9932.587502597828,11005306.952878393,2.698812384997443,3098.165361660671,24008,0.6899315797112192,0.7440825092978827,0.9921281392954425,6.942276539108458,143.9071044921875,144.93017578125,0.009372187778353691,1561,0.37247397777503694,2.2508049524364537,5.788834743889545,1.1403771716039568,6.843795102296849,149.5043487548828,60.68502426147461,0.030424706637859344,1035,1236,0,428,189,3010.4375774399996,3931.5611782215915,30940,7,17.52045881142857,122.64321167999998,2.646848035175691,0.6148867575834677,2.394612249268645,0.1868321328717125,1.9554453687682152,14658.194508333085,1797728.051932108,0.24710522053208311,3.122715597647356,4.697777159444329,4.972897932639698,0.9638618206278925,11537.95401781418,1415051.7369608907,39.67653833455522,9.205545885198479,2.2857142857142856,10378.777830764622,1272886.6464781568,0.10674097703866539,1.0616064245071635,4.401330914918398,3.9054197416225374,0.9849506620460063,8020.677967019874,983681.7057263304,0.37413399487543747,0.37413399487543747,72,1.8090249999999997,130.2498,2.0238985049932765,0.7512907577369403,1.354066796252421,0.5182060490815933,0.5691682020015547,7347.435534644261,957002.0089003079,0.21421863616629064,2.837720578444396,7.119501935684937,5.375725621242744,0.9485457330723399,6315.420149155445,822582.2113434668,70.83075619452806,3.140409749635662,2.888888888888889,0.1428726186411131,3030.4741541069725,394718.6524776023,0.09065402749753942,1.03871848974582,1.285133933765837,1.1063259420416807,0.9971567031948716,672.3742903622242,87576.61684482162,0.1428726186411131,"CurrentSlice","Yes",688.6539998054504,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",5,4,"D - 5",1,1,,,,987,0,67,16,85.964868,0.4812734142315858,0.2579150272288112,2.2081925917775584,0.12367577003789065,5.496535573560589,3.49391621152328,21.3145795736158,47.377211586284915,18838.50909090909,1619449.9473167998,0.15380783476427848,4862.221133215788,5798.524055719225,15962.526482213438,13169084.347826086,3.028320183210769,2897.5102934599036,25425,329.3099956363636,450.86395490909086,10.644047520446776,2.745259806060791,0.7016503021699302,70.57562242625994,4,47.21427435259365,1,64.67345476888057,2,64.67345476888057,2,-0.5717340502553148,0.5713736281279411,1.3032139577594122,6.6632923254926,92.60204315185547,352.02447509765625,0.0032626078464090824,980,0.4428146006417324,10697.288484848485,919590.9925579199,0.11548868618492095,1855.5657211658822,3532.416599854613,8517.382907334211,7026840.898550725,3.028320183210769,1235.4157928562352,15940,-0.5251075180797197,1.7324904656293132,1.5882460973370065,6.519127815048681,114.10679626464844,117.92233276367188,0.009331216104328632,618,0.4428146006417324,0.814473677512712,0.7135613015870179,1.3619834710743803,6.630731306092549,117.30000305175781,69.54558563232422,0.01699400506913662,680,951,0,167,151,1391.1720638399997,5123.228072803536,51974,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,144,2.0340677099999995,292.90575024,1.7619005149718108,0.6576992044600594,1.6993463204250607,0.41364666696270613,0.6985355597251159,6716.962140088378,1967436.8349762622,0.2856263764585111,1.827920799615839,3.0813087545505846,3.472273127933331,0.9625316705139664,4537.056562574105,1328929.9563420834,25.992591195361797,3.284033556188509,5.194444444444445,0.12863400584568777,3120.4567845742026,913999.7355772047,0.07447810306615793,0.8199004464851911,1.0850054430577474,0.6252158748041895,0.9996974895745849,244.47417587855034,71607.89190001249,0.12863400584568777,"CurrentSlice","Yes",701.3369998931885,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",6,1,"D - 6",1,1,,,,744,0,38,42,109.20143231999998,0.7560260510041577,0.6860855594635814,1.2270753299479935,0.44274300707655034,4.618062988304843,0.6858298835722857,16.491257756763126,42.60403365529544,26073.15648854962,2847226.0336531196,0.1522837974072224,5798.01222778932,3456.893181407561,23150.15648854962,24261364,3.327637740291731,3970.519280469096,40607,245.54915496183202,446.6788122137404,7.6154024780273435,5.224817669677734,122.55350401379289,28.24011733443695,3,24.69062798319538,2,33.148546707744195,3,33.148546707744195,3,-0.23773046576129675,0.8671706483970989,1.0361429986597517,6.897583418699376,108.82579803466797,686.4547729492188,0.001638991991057992,1504,0.05780879137304121,9728.670801526718,1062384.78609648,0.22169594041796928,2199.946934126812,2923.5967256080626,7949.670801526718,8331255,3.327637740291731,2156.8068223613045,18547,0.725529070028036,0.3862832607309037,1.0925936716974536,6.858223654615401,176.96507263183594,111.81732177734375,0.01090338733047247,1374,0.05780879137304121,0.7649731966233949,-0.43275725834333256,0.9924392517918535,6.926860065660074,55.52708053588867,744.6135864257812,0.0020842659287154675,1514,719,0,91,70,401.169384,6021.170649350649,19626,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,1.2156647999999999,18.234972,2.3031589208769114,0.6162439596120259,1.1770824727842062,0.4606165994221801,0.45510185491316024,10740.253566898218,195848.22306528912,0.1499363034990429,1.59986058230355,6.037242027486351,10.868938254710507,0.9800974215308742,8961.253566898218,163408.20787728913,10.7863880281715,2.8283640565758303,4.133333333333334,0.02730700951451377,5557.822917211988,101346.74527631892,0.11928366892832286,0.6850114121336349,1.901410508796438,1.8731042736264931,1.0035969943715326,2634.822917211988,48045.922120318915,0.02730700951451377,"CurrentSlice","Yes",1121.2139999866486,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",4,3,"D - 4",1,1,,,,924,0,23,18,27.821357279999997,0.7003953023687213,0.992997343430873,1.1032933331313193,0.9410658812368963,2.2102668967069476,1.173063790617032,7.167323148847134,22.342022069010525,30533.662921348314,849487.9452019199,0.21251366496749788,1694.2631773271048,3405.294193357104,27940.996254681646,7460245.999999999,4.807764304186109,6488.820612297928,41444,301.53509662921346,450.6481438202247,3.137827576446533,3.1158544475555416,-20.801685764325125,84.4735621184596,6,71.03292667607043,1,78.28359652227893,4,75.85439587094292,2,-0.41265494840655464,-0.9374792885388703,3.745318352059925,5.58724865840025,19.5238094329834,927.2714233398438,0.0013277509715408087,420,0.3906121250856895,22224.913857677904,618327.2689516799,0.2009455744398441,779.3239500005959,4622.712856020567,20912.580524344572,5583659.000000001,4.807764304186109,4465.998082007138,30543,0.043138903416397735,-1.0950867352469986,3.829482809409586,5.571672317264071,25.80332374572754,526.343505859375,0.0021599845495074987,361,0.3906121250856895,0.32450392318540133,-0.7134111663808893,3.7733731711764786,5.58205654468819,37.45217514038086,558.2985229492188,0.001881423289887607,345,903,0,76,33,194.33270159999998,9706.057372654155,30543,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,0.15629975999999998,0.31259951999999996,9.42477796076938,0.5,1.9634953547275529,0,0.19482703448350874,12068.75,3772.6854569999996,0.053016231300604795,1.8784237946037385,9.196405892811786,7.380580876178746,1,10756.416666666666,3362.4506869199995,8.762924116878176,7.096095594057339,1,-0.5000005169577656,3433,1073.15415216,0.06730031190872476,0.7352414818882513,1.324119310876832,1.1946966076072354,1,840.3333333333335,262.68779664000004,-0.5000005169577656,"CurrentSlice","Yes",536.0739998817444,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",4,4,"D - 4",1,1,,,,544,37,71,52,286.96635935999996,0.8370208926912253,0.9484686109634829,1.1208214038673008,0.5574374283405994,7.154738342780873,0.5009814112030959,23.73842317256982,65.63753710364631,28454.88307915759,8165594.203240319,0.17621308862580262,23592.688140718943,3133.8809981399313,25738.43728716935,70883656.28886439,2.6680276611375566,5014.122833864448,47319,186.98910849673203,432.865071459695,10.382370973205566,9.847352975463867,20.785120118982814,75.61761962370744,5,65.12594519413362,1,77.05569171160371,5,70.04882291587293,3,-0.17507423989002022,0.2570790704795187,0.41663831943923646,7.821758374592237,249.3422393798828,821.1865234375,0.0014148189220577478,4342,0.3694979522003937,11010.843500363108,3159741.672781919,0.16446020365455913,6234.874669665645,4126.960023970837,9567.089182097763,26347763.60749724,2.6680276611375566,1810.8455644781955,19864,-0.08479059509798699,0.22065864464984752,0.5184246430490752,7.648671601721708,637.4984741210938,130.45204162597656,0.008646824397146702,4201,0.3694979522003937,0.9439508698045065,1.1635806349103852,0.4590932367998169,7.746355847276366,334.77532958984375,131.3349151611328,0.011116658337414265,3792,414,0,389,147,2365.7531673599997,5609.251585623679,35856,2,1.302498,2.604996,0.8726689246115662,0.3140597067747958,1.9359191177327375,0.13842421480496048,0.6334828854653536,7319.150000000001,19066.3564734,0.11302730692547269,0.9450680198405976,2.6875230497790215,2.7904641084827237,0.9376018177617311,4595.768706357958,11971.959096987654,38.37064668915571,70.22271951470977,1,2770.9333333333334,7218.270249599998,0.08570176436201199,0.501719016883158,1.020058394504244,1.0325989286005663,1.0034421793869175,54.48754134509363,141.93982725380351,0.07871060253048172,0.07871060253048172,111,2.4219422270270266,268.83558719999996,1.8046243185359578,0.6706347529449163,1.7057529438705372,0.41981530773085696,0.7614153699667113,9442.258855114374,2538415.2038090723,0.2049132025320767,1.9417839550125677,6.540073152099142,6.303580103207261,0.9634271112679224,7998.504536849031,2150282.663885673,26.63279857048888,3.196404421265113,4.378378378378378,0.10069259008200016,3731.99679156962,1003293.5488901347,0.08523414706375608,0.7618808870358094,1.3738528494021858,1.3781727672880568,1.0020172688476885,1015.5509995813804,273016.24930400733,0.10069259008200016,"CurrentSlice","Yes",548.8069999217987,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",5,1,"D - 5",1,1,,,,1420,0,43,35,120.14241551999999,0.79892055331069,0.964302847661758,1.067664473331535,0.8913462803635952,4.518305867952762,11.724126616919657,14.2690745095819,43.471168551823155,15517.738074588031,1864338.53568768,0.1910276206072423,6397.729355253197,2706.0282066294217,13208.74555434868,15229683.624164028,2.871426106174408,2964.316581594961,23237,464.85803677363396,448.14830737207285,6.504280114746093,6.272095836639404,-17.609188209530004,40.38269528050137,3,27.647488425038926,1,27.647488425038926,1,27.647488425038926,1,-0.43253058605402805,-0.4794940145779152,0.9846480654185431,6.961579903923991,145.26849365234375,252.7582244873047,0.00461025582626462,1460,0.11086107384273743,11107.380745880313,1334467.5529104,0.15489970360207939,1984.9918302000583,3868.2453718715547,9058.047940530085,10443929.275431188,2.871426106174408,1720.5299853323038,16569,0.027133094905405566,0.4206504104928026,1.0237631910119458,6.929570624126529,195.9556427001953,132.6959991455078,0.00859621912240982,1375,0.11086107384273743,1.314663585870783,1.9460181814536401,0.9515506514548946,6.982791657977026,99.3086929321289,198.78550720214844,0.007882583886384964,1380,1386,0,278,359,3403.6877735999997,6616.150681157202,31689,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,253,1.8681836926482212,472.65047423999994,2.4208237963107426,0.6678420892479727,1.5875152021017487,0.43374732987380565,0.6249766288383065,9331.380007820684,4410481.186010101,0.18462013555401743,1.5472798636078497,4.553374631713838,4.983318659556754,0.9671872094181099,7282.047202470456,3441863.063685726,57.54140566213562,3.33572023720536,4.822134387351778,0.11601730885650113,2875.7442669090196,1359221.891547509,0.07873439539437872,0.8828932542823613,1.2454541284572533,1.216406230867786,0.9966278480558144,566.7517466696672,267875.4818397665,0.11601730885650113,"CurrentSlice","Yes",663.2139999866486,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",5,2,"D - 5",1,1,,,,1434,0,58,58,249.24601727999996,0.7612523187443061,0.7146794814532087,1.1342058153705292,0.6403018898536137,6.70764584825815,4.405874103710575,23.755974689328152,64.14380689670175,25035.31939799331,6239953.651282558,0.1881431919335111,19050.15734012615,6702.647539712808,22419.734982408892,53628006.07792207,2.6504694470678976,4710.224902613409,40140,473.75677224080266,445.1160993311036,10.917462854003906,7.802486691284179,51.42489376718272,62.39533969022703,2,48.5746489137435,1,81.61927787527243,3,72.58189632500506,2,-0.40039405918750354,1.239085186417693,0.49216451717542303,7.6628691388959576,222.18841552734375,639.8081665039062,0.0019206543220207095,3211,0.28107246793295626,10571.5,2634904.2716755196,0.15566607454597192,9033.832730901937,3988.5387140360376,9547.454545454546,22837511.272727273,2.6504694470678976,1645.6239070627423,21432,0.6804389107538482,3.632726039794753,0.6235948143756781,7.4800591649148975,529.5897827148438,123.4858627319336,0.009064759127795696,3147,0.28107246793295626,1.405985161931986,3.8169890921583907,0.5924849833894476,7.52455413556682,318.4342041015625,85.88980102539062,0.015464624390006065,2432,1249,0,333,240,4975.0213607999995,3188.5381296470837,26396,3,0.20839967999999998,0.6251990399999999,8.843001543437936,0.6666666666666666,2.7488935194219413,0,0.2724698365008337,8529.333333333334,5332.531011839999,0.004376786420096735,0.9227011176040588,3.6917086844181126,2.8097737064699078,0.9985472761427676,6218.930735930737,3888.0695259303902,45.74507327439569,32.21011707614252,2,2775.0833333333335,1734.9794359199998,0.0027683784223667828,0.6550538423658578,1.0609802217808673,0.6835627869672009,0.9985144501111547,159.49891774891785,99.71857025766239,-0.04828117009554953,-0.04828117009554953,82,0.9085717756097559,74.50288559999998,3.444090401431759,0.7371698655494898,1.4092650392490484,0.4329822241310338,0.3955139200756084,7423.802079360211,553094.6770356158,0.1871768219156752,1.844897340119345,7.249484919256276,3.9103456716804152,0.9735566846897087,6399.756624814756,476800.33568641584,25.41365453379839,3.5549143617281196,4.121951219512195,0.058488347350873084,3653.501977399624,272196.43986157794,0.09282688652188319,0.9587277660984367,1.3968205176751294,0.6977332969842462,1.0049139033882273,1037.9175618152085,77327.8533701494,0.058488347350873084,"CurrentSlice","Yes",675.9470000267029,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",5,3,"D - 5",1,1,,,,1175,17,72,45,219.34066319999997,0.7225353041340424,0.9390255178594769,1.351807809844047,0.32970104903445585,6.869531309983808,0.9999185654981083,24.407181018708407,61.76393710364631,17295.709738717338,3793652.4446049593,0.1697756501249492,12509.060538456826,3252.437824973756,14885.12709571931,31333192.536489148,2.1104041131788067,2936.390365263151,25070,390.65486023752965,440.2743574346793,10.014667314147948,9.404028160858154,21.155340878438132,34.80122837967649,5,32.398233267098256,2,39.4503926579591,3,32.398233267098256,2,-0.4830198193097781,-0.1231992394659156,0.581581011165588,7.504114837688109,283.5486145019531,305.8096618652344,0.003770657582208514,2942,0.320796287605913,8574.046555819477,1880637.0578611197,0.2894315789594859,4172.576636251024,4062.7510637783857,7399.900204734665,15576789.93096647,2.1104041131788067,2481.599832722973,20588,0.8457429321317782,0.9798252898244466,0.5901569050050496,7.494559104068339,395.56475830078125,86.16828155517578,0.015911322087049484,3304,0.320796287605913,2.4831176023632464,10.30100347368165,0.5355420021326894,7.571094887707869,174.23155212402344,269.1256103515625,0.010077763348817825,3360,963,0,409,131,2681.0618831999996,4673.0536338904,20588,1,0.6251990399999999,0.6251990399999999,1.3716109116646036,0.575394794374176,1.4253521253676225,0.2515460889735013,0.3765999999819096,4956.833333333333,3099.0074414399996,0.2443279241188343,1.4319778178069311,1.2145861330451064,1.6816413659785734,0.9625309391762056,875.7449704142009,547.5149147877868,26.026474530104036,,,2491.5,1557.6834081599998,0.09388527214874227,0.9806329875902946,1.033567551495076,0.9375239980000324,0.956669000976406,80.9173570019725,50.589453916970484,-0.3145260899107994,-0.3145260899107994,139,2.0667550998561146,287.27895887999995,2.1958892769934697,0.6393972895194114,1.6608457100094345,0.3769984112179921,0.6795743820938217,7195.194887057624,2067028.0960926132,0.17676178342337792,1.7718604505853985,6.128022184295739,5.264339281618915,0.9681498212602923,6021.048535972812,1729720.5547802174,28.287570922749552,3.366106648757931,4.014388489208633,0.0706183644582612,3063.220536751493,879998.8066178035,0.09524245817956975,0.861581882513688,1.270738651358488,1.1182805639210849,1.0030352761670995,652.6378937534655,187489.1346431316,0.0706183644582612,"CurrentSlice","Yes",688.6539998054504,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",5,4,"D - 5",1,1,,,,1240,0,65,7,32.927149439999994,0.2218151867989935,0.10180049499597948,5.772076268524901,0.017282560318408025,5.4998793829622095,3.5850896658763864,20.66172172109575,43.19031393107648,19381.95569620253,638192.5516483199,0.2734956494933887,1902.042145811509,5798.524055719225,16669.459451172344,5267549.186570461,2.8747863540196925,5300.880561584997,30571,411.43209493670884,452.1794658227847,10.944731858825683,1.114179120826721,1.1628110801627463,70.34342275223317,3,64.00661000366824,1,78.19256328345325,4,73.06962259441787,2,0.2329755163602789,-0.8181439595473261,3.224643486620734,5.742581191171217,25.296297073364258,406.37689208984375,0.0033004579599946737,459,0.8034205180413542,10154.943037974683,334373.32696607994,0.21172480808949337,695.0776863464748,3532.416599854613,8652.745570738634,2734267.6003534086,2.8747863540196925,2150.0533658749264,14253,-0.13727012230926627,-0.8786364013885448,3.2647011696843458,5.733807176227421,43.89426040649414,108.94259643554688,0.010902488604187965,331,0.8034205180413542,-0.3872023256761495,0.17311263527246323,3.3648453773433746,5.71460329778361,34.11428451538086,343.74285888671875,0.0034661691170185804,350,1202,0,209,156,1245.1880879999999,4763.146192468619,18227,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,84,1.755271114285714,147.44277359999998,2.4361695647781936,0.7039119946573756,1.61947308677601,0.46386861543436,0.6126284952392202,6011.37791301606,886334.2326528673,0.2038740482589423,1.9556284774485069,4.001722838793379,3.107527711767477,0.9630302629584154,4509.180445780013,664846.0715886895,30.96729543348743,3.3430351759137595,4.142857142857143,0.12549479751146542,3122.029215042769,460320.6467261366,0.07030676094305147,0.9441434088633556,1.150980105783713,0.6255309275541052,1.0004839075367684,409.53297001258215,60382.67697930073,0.12549479751146542,"CurrentSlice","Yes",701.3369998931885,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",6,1,"D - 6",1,1,,,,899,0,39,58,142.12858175999997,0.654072311824623,0.9707760872488843,1.4629676059029286,0.29209995956021917,5.752652208732044,3.2880242385700735,21.100851080465922,52.25559062083368,24040.772727272728,3416880.9321417594,0.1573390624729542,9495.038244046806,3456.893181407561,21088.81118881119,28765138.46153846,1.6095156828033337,3782.5526420344577,34666,295.5757011730205,444.7327302052786,8.254289586639404,8.013066947937011,113.09987172324358,27.46236604530545,2,27.46236604530545,2,34.99637208248424,3,34.99637208248424,3,-0.5972887927300387,0.22046516893744883,0.8051616343168704,7.15008173415485,144.24212646484375,569.54931640625,0.002004130743443966,1937,0.12378427437723333,4705.574780058651,668796.66985536,0.1800710769227579,2691.9791480238678,2923.5967256080626,3983.630335614207,5433671.777777778,1.6095156828033337,847.3379181857309,7806,0.21813340871865186,0.4297561135429273,1.0964817984021464,6.915354349538301,439.8138122558594,27.456226348876953,0.043087080121040344,1622,0.12378427437723333,0.8492510897945947,0.7836668600905115,0.827736259578091,7.132036645865578,176.59332275390625,109.07315826416016,0.01287840586155653,1736,832,0,121,185,1383.2528759999998,2622.7825988700565,12215,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,69,0.9060855652173911,62.51990399999999,3.655616157856133,0.7173568043534722,1.4291907861808864,0.4447538004352119,0.3967226481644215,4739.027460245418,296283.54186790733,0.21427298552907864,1.4468541874456744,6.564255043048675,4.795808267649732,0.9676096523867166,4017.083015800974,251147.64450790733,22.889338833356653,3.0470609343415482,5.304347826086956,0.07174610524052967,3474.339182559197,217215.35215703945,0.056654115367284735,0.7787712145014088,1.1769595021112313,1.17092603845395,0.999471295620143,522.3776440976585,32659.000160731775,0.07174610524052967,"CurrentSlice","Yes",1121.2139999866486,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",6,2,"D - 6",1,1,,,,1187,0,21,6,10.107384479999999,0.5936389458529308,0.29525315534340585,1.9049345767074302,0.16078700523076772,1.7505298084233814,16.4848704770653,6.464064962544854,14.62726510347228,12609.917525773197,127453.28469407998,0.26722168080882436,395.0226192552032,3127.2338869392147,9826.225008766394,953143.8258503402,2.9410805816675363,3369.6433560977657,19475,386.3283711340206,452.2161773195876,3.3623766563415525,0.992752317237854,-0.10653118153060222,45.21032581674639,2,19.301132065343246,1,87.3720665623847,4,76.56457715411666,3,0.25439301673971304,-1.0152948583873154,10.309278350515465,4.574710978503383,14.811320304870605,169.7232666015625,0.007673326879739761,159,0.30760903646646354,7239.144329896907,73168.81504847998,0.17040699782688692,264.4071938348285,2461.3893189531213,6406.423241461533,621423.0544217686,2.9410805816675363,1233.600852093263,8859,-0.9417316707787438,-0.029113850059872437,10.734403230949091,4.546127589614313,14.78787899017334,55.212120056152344,0.021511618047952652,66,0.30760903646646354,-1.0350304335687692,-0.19045209505493066,10.734403230949091,4.546127589614313,15.0600004196167,168.6999969482422,0.006563375238329172,100,1178,0,92,196,671.6721686399999,2724.7123797704003,18551,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,1.1114649599999997,6.668789759999999,2.126419034188902,0.5556626744035844,1.3826756717725777,0.3732224161474457,0.45967172035637227,8853.796805046804,59044.10947061684,0.18391990352957152,3.649928900106751,10.632367701510336,9.966923762341082,1.000235673148664,8021.07571661143,53490.86760312296,11.534281487174617,2.6462352972361565,3,-0.3752567542809939,3510.8131359381355,23412.874690217723,0.09710109008007832,1.0788031965180818,1.2612072326555583,1.2901235193514715,1.0004695922561746,727.120618931333,4849.014537814135,-0.3752567542809939,"CurrentSlice","Yes",1133.8769998550415,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",6,3,"D - 6",1,1,,,,48,0,69,14,74.50288559999998,0.3867189745511483,0.21874956939253729,2.7567093282929225,0.07972602863173872,5.717314845781946,3.1830556825133334,21.952773401099,49.20324413802105,27812.462937062937,2072108.7444542397,0.3120249031678797,5279.8622489381105,3390.9141557068992,25033.41375673507,17898890.836065575,3.1839439246364214,8678.181054797305,39845,27.53009958041958,451.17417398601395,11.170486463928222,2.443539103889465,2.2773542823393886,25.814400806712076,2,18.86170147176465,1,38.36568528949244,3,25.814400806712076,2,-0.34646227585674705,-1.0452057545089608,1.414250085578757,6.564527049764666,37.67231750488281,760.8936157226562,0.002183999866247177,1062,0.8967669425990511,9370.365034965034,698119.2342302399,0.1894248004758384,1461.7709975062514,2943.005673705465,7857.692903817493,5618250.426229508,3.1839439246364214,1774.9795271340242,12655,-0.3648470033105273,-0.8751268320103032,1.5629126118636607,6.494727613400587,70.66666412353516,87.67521667480469,0.013581497594714165,468,0.8967669425990511,0.9004765226512594,0.26948577865166934,1.5394395813976234,6.5036901639765805,88.31343078613281,658.6746215820312,0.00156350526958704,670,0,0,257,74,1001.9856614399998,4939.291493344426,19725,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,23,1.1733808069565215,26.987758559999996,3.8175528088162984,0.6971569406707304,1.6234836533218944,0.3737575988766194,0.46406578890451317,7716.542429180783,208252.18399672685,0.14877789147479326,1.7310419075845755,5.101265680968732,7.018214780475891,0.9793869614360667,6203.870298033242,167428.55374087638,28.34775414836795,3.817339766914188,3.217391304347826,0.02907019263705473,3487.569987041696,94121.6967713836,0.06540028705830216,1.0133964046737873,1.2549507981827932,1.2240803780096687,1.0007287837332846,708.5208067138274,19121.388466329197,0.02907019263705473,"CurrentSlice","Yes",1146.619999885559,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",6,4,"D - 6",1,1,,,,898,0,47,32,102.32424287999999,0.7437281383469583,0.994131151111987,1.1952907181421653,0.5955131636424043,4.412006279479716,1.8619773074448898,15.61831698487388,41.58024993116351,23542.38798370672,2408957.0260199998,0.14871430162983912,6016.895828408655,3281.395059101038,,,2.700311752006882,3501.0897876956615,31031,298.5482529531568,448.97108065173114,6.257792076873779,6.221066040802001,22.291550123488207,33.48957253728822,2,12.298920432562676,1,41.53398033752032,2,41.53398033752032,2,-0.5474158556910101,0.5772024580936219,1.0992156163281221,6.835413677126034,111.98922729492188,543.5900268554688,0.0020710004027932882,1300,0.06578988138384423,7746.8197556008145,792687.4662196799,0.21437247814106516,1902.353355615499,2868.8612527214123,,,2.700311752006882,1660.7049487203074,16276,1.0766438232422373,2.1279916781826786,1.2091371779609343,6.766932182678281,178.2177276611328,73.08959197998047,0.01664288528263569,1038,0.06578988138384423,1.4793754068371925,4.284508481912556,1.113733558430569,6.824652875959848,105.44744873046875,236.25875854492188,0.005476304795593023,1256,856,0,101,62,352.19545919999996,5087.8136094674555,16276,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,15,1.9797969599999998,29.696954399999996,2.0080910267070875,0.4892749699905459,1.6174538709129689,0.29635606258769537,0.6981800023196716,5759.642384687033,171043.83725835805,0.17597901480009778,1.3452895720445506,,5.422870893260758,0.9941704590002264,5759.642384687033,171043.83725835805,11.87689582453896,3.1072818579785504,4.4,-0.20319754790046954,3688.597356959592,109540.10750958952,0.07226978898159576,0.7164632717672986,,1.306682326768829,1.0013125953480464,3688.597356959592,109540.10750958952,-0.20319754790046954,"CurrentSlice","Yes",1159.3239998817444,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",7,1,"D - 7",1,1,,,,164,0,73,60,289.98815471999995,0.6175825694660889,0.5465773586634788,1.3007852089776526,0.38265344785380484,7.748238819337555,1.7219911573055608,27.83015290507761,76.81526731059088,16311.591448077614,4730168.304574559,0.16614509614373388,11777.310426371436,3289.3430795840645,13193.356665468918,36717111.6,2.082095074018079,2710.0909293981626,23944,64.4585088034495,443.7634715055695,13.597878579711914,7.432292557525634,-37.75013815965826,44.65619710178997,4,31.72042672960431,1,41.42419258064444,3,43.61015917377626,2,-0.1787982142493851,-0.15788851596635078,0.4682967490754464,7.738068791789277,364.4794616699219,271.6142883300781,0.004166547209024429,3531,0.23596509336282764,4756.00503054258,1379185.1226460799,0.2802938848797547,2867.89981407769,2284.2400858114147,2985.60503054258,8308938.800000001,2.082095074018079,1333.0791265184362,11848,0.8888382782145818,1.7622453649941416,0.5790766252008208,7.556856462346462,724.5491333007812,27.98822784423828,0.04920361936092377,3398,0.23596509336282764,0.9992056527180577,0.9318601143277685,0.45151191935948054,7.763752202533113,303.0523376464844,161.36314392089844,0.008649162016808987,3478,101,0,234,136,2210.49540576,4633.681106816253,20976,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,105,1.6612431634285714,174.43053215999998,2.829727588798168,0.6490165167911252,1.526397269716247,0.40529917285745526,0.563043638137745,7001.83710282572,1221334.1719435228,0.1635971210842468,1.381350288449891,3.954946397890714,7.78344494789215,0.9742431584121066,5231.437102825719,912522.3578074587,26.223088669487915,3.110827592942939,4.133333333333334,0.20396691705778286,4001.730535321378,698023.9868370295,0.07368968527383526,0.8610222211738774,1.2833320177300938,1.4203971236305626,1.0006445092570617,883.4957527126821,154108.63430677287,0.20396691705778286,"CurrentSlice","Yes",1273.4199998378754,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",7,2,"D - 7",1,1,,,,383,0,45,8,26.15415984,0.35849843372391715,0.20038786717237667,2.8244299452731516,0.07345315920469964,3.42882922909731,14.097325857185973,14.203199999999999,30.27831393107649,11395.322709163347,298035.09156384,0.18141293548697282,945.3438210355636,3470.1203633111973,8801.717770891742,2209231.1604938274,1.8026273563294888,2067.2589434906868,14739,130.0382438247012,451.9637258964143,6.7237398834228514,1.3473558946609496,-1.2895263296806858,74.08351451907042,6,54.80849828263454,1,61.00607394143022,3,58.13140269456688,2,-0.22925870280200153,-1.152811498905429,4.174536912112506,5.492314428507404,38.0462646484375,129.37367248535156,0.008822578936815262,281,-0.44980945082280477,3973.629482071713,103926.94061903999,0.05613463921230882,498.10556475530296,2204.3543653763363,3355.8331857754165,842314.1296296295,1.8026273563294888,223.0582573394892,4616,0.36027462426653056,-0.21877493813573823,5.063411691877906,5.366637248299568,55.85185241699219,19.66666603088379,0.0533333346247673,108,-0.44980945082280477,0.35417074459124664,-0.3120580614763955,4.460246662751385,5.446045093715676,53.35555648803711,117.61666870117188,0.00875584315508604,180,50,0,443,197,2504.1305548799996,2022.9375,17273,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,174,1.6516273489655169,287.38315872,2.468857902338791,0.6745236761702589,1.5898327842411115,0.4202922765191673,0.5809369906063729,3254.992042762696,935429.8948576088,0.2464909799366422,1.6354787173917509,5.268714076591996,3.3394013570760968,0.9564169522110879,2637.1957464664,757885.6437824623,52.02531463952834,3.053492653846435,4.586206896551724,0.0674496954038254,3077.9456355446823,884549.7391112687,0.07290971708640658,0.8659920752621286,1.1867442069245306,1.0295458676435152,0.9985745587813127,484.34069727307724,139191.3594789842,0.0674496954038254,"CurrentSlice","Yes",1286.0699999332428,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",6,2,"D - 6",1,1,,,,1236,0,35,21,53.55871775999999,0.6981832512507162,0.9288378995471989,1.2494952179403105,0.5004293868626071,3.2635663730201956,17.451053125845675,11.995831736065655,31.048119724218942,17451.22373540856,934665.1666113599,0.21790518438108578,3039.5105347575122,3127.2338869392147,14800.631113812806,7607524.392499782,3.2246458893354406,3802.7121257397826,23743,405.5228381322957,450.1898171206225,4.783975325775146,4.443537593078613,20.380203913019592,36.01661648236349,2,36.01661648236349,2,57.77853039225142,3,36.01661648236349,2,-0.4543534316349662,-0.9612946582735811,2.06664748898545,6.199070133591511,51.10401153564453,290.7013244628906,0.004294198006391525,673,0.643167235067022,7937.1089494163425,425101.37805215997,0.19049221929217688,1663.6273727754365,2461.3893189531213,7153.402954462893,3676849.118593927,3.2246458893354406,1511.9574985381175,12645,-0.41290047732465757,-0.01399263406765483,2.1347787248860697,6.176475575162088,89.75521850585938,70.808349609375,0.017354387789964676,527,0.643167235067022,0.5698823752345326,2.0328537290374467,2.1347787248860697,6.176475575162088,75.35051727294922,250.8505096435547,0.004434309899806976,582,1227,0,215,398,3057.2233055999995,2548.3637014314927,23257,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,61,1.1974440629508194,73.04408783999999,2.887263024774248,0.6429951909481798,1.2653231607254434,0.4267291352594949,0.4410651521385621,7853.027613813376,573617.2388333298,0.1894706912186889,2.504689719310461,10.020374559313948,8.840334746085631,0.9767885879062865,7069.321618859926,516372.1492972154,29.59253249753409,3.3228095777656526,4.491803278688525,-0.022100469297678095,3372.009841206947,246305.38303846467,0.06903240603212286,0.9735418173296231,1.2721720470107072,1.2391172743129328,0.9989199867560322,721.4172196111931,52695.262758568555,-0.022100469297678095,"CurrentSlice","Yes",1133.8769998550415,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",6,3,"D - 6",1,1,,,,864,0,18,8,11.04518304,0.750036931541438,0.45746929163070915,1.4045235722281821,0.33034761234799015,1.5713070195167838,27.992982853454787,5.525445965711727,13.60348137934035,16844.556603773584,186051.21091631998,0.2747407624374306,570.2153167966108,3390.9141557068992,14042.746369232007,1488531.1151385927,2.1065423329375133,4627.886324241212,26025,281.54859622641504,451.98090566037735,2.8627144718170165,1.3096039615631103,-3.2212420661915817,52.319014644959616,3,45.64861455042543,1,46.61785108740388,2,46.61785108740388,2,0.20721804342912067,-1.0280282907503129,9.611961552153792,4.650360845422257,12.361701965332031,302.0106506347656,0.004442127421498299,188,0.7669487719438493,6199.566037735849,68475.34165536,0.20526241659902775,238.4974460518759,2943.005673705465,5168.064545198536,547814.8417910448,2.1065423329375133,1272.5379067709196,8216,-0.7873139717555909,-0.03172223054246759,9.789960840156638,4.637282596732446,17.674419403076172,40.44186019897461,0.031509704887866974,86,0.7669487719438493,-0.5449742499748881,0.3737094851894258,9.789960840156638,4.637282596732446,14.416666984558105,528.861083984375,0.002056761411949992,144,796,0,123,279,1905.3982742399999,2775.3573225418354,20050,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,118,1.8023040122033898,212.67187343999998,2.380974268367231,0.6466624562788892,1.7677154446539174,0.40612287851925477,0.6608259012475357,4664.959767228391,992105.7332186882,0.22796618301563065,1.9747461324016793,4.522494442304106,4.242792661241601,0.9744651343152372,3633.4582746910773,772734.3783446215,51.317919619685064,3.231346474377905,4.440677966101695,0.13297749088055322,3221.534840814088,685129.8499481642,0.06908170542119826,0.9133517211535186,1.1498047944496799,1.1307063658556138,1.0000585542439768,419.7246062725103,89263.61834484113,0.13297749088055322,"CurrentSlice","Yes",1146.619999885559,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",6,4,"D - 6",1,1,,,,1397,0,21,12,19.068570719999997,0.8121236264730204,0.6230797917063468,1.2196940549603392,0.5224663058839389,1.9239536099772636,6.712427995022685,6.488199700995646,17.177222069010526,23535.147540983606,448781.6252908799,0.28661428349123613,1419.2464976225176,3281.395059101038,20973.62054869569,3838172.560411311,2.718252620299728,6745.509449319545,36145,453.98380327868847,451.4737245901639,3.268144974517822,2.036315089988708,-5.714328414976163,46.65763968943477,2,14.86091613439106,1,41.43512934490899,2,14.86091613439106,1,-0.010504560798779062,-1.1666170143490877,5.5839230792200425,5.194335394796395,15.622093200683594,578.5057983398438,0.0024281409569084644,344,0.8576646894809502,7798.289617486339,148702.23706607998,0.19844542922592642,753.650228919804,2868.8612527214123,6972.212496663717,1275914.88688946,2.718252620299728,1547.534930370162,11004,-0.07622356195679128,-0.7471055747037023,5.643644181671593,5.186760015773882,29.66666603088379,63.86549758911133,0.018673086538910866,171,0.8576646894809502,1.0568643828114015,-0.3053046363804528,5.763086386574696,5.171609257728855,12.512953758239746,199.9585418701172,0.013561860658228397,193,1367,0,61,111,399.29378687999997,2175.5511482254697,11499,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,3.1780951199999996,19.068570719999997,3.4675517462389807,0.35640773028734873,2.7811656443847297,0.1376865556189157,1.0414605646636783,5529.1301440329225,105432.60917157556,0.13322485346295804,3.464155458860809,6.6932372349532185,5.2058369114797145,0.973532478579997,4703.0530232103,89680.49917299539,18.81728096295637,6.552126772623472,2.3333333333333335,0.24847482739144847,3127.706532921811,59640.893214425545,0.04805212252306846,1.0338302948536007,1.2210320415668117,1.1079872521670602,1.002251021942689,566.1795406338929,10796.234610794498,0.24847482739144847,"CurrentSlice","Yes",1159.3239998817444,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",7,1,"D - 7",1,1,,,,66,25,41,44,98.67724847999999,0.6707763494651943,0.38847627291103765,1.5147435685446051,0.25497491826201024,4.877397489750973,1.1829405621996496,18.06815150257491,42.99565572430597,37331.676874340024,3683787.1551043196,0.2442259558347946,6520.772357828152,3289.3430795840645,,,2.9166891011161606,9117.36446755139,59390,27.944526715945088,437.4706948257655,9.092771157073974,3.532325849533081,132.99623739711726,34.19230003473624,4,30.13125848898701,1,34.19230003473624,4,30.945163030130235,2,-0.24971766690613958,-0.6385613014706726,1.1005687944701714,6.8240214931624275,53.10700988769531,1391.20849609375,0.0009555190918035805,1626,0.15776357422506815,6662.4181626187965,657429.0925103999,0.258750203310334,1209.438373722568,2284.2400858114147,,,2.9166891011161606,1723.9020541160753,12215,-0.1677967242666601,0.4810201392855533,1.2120752579423266,6.75447288367291,214.76380920410156,52.81901931762695,0.027756305411458015,1304,0.15776357422506815,0.8453963423221834,-0.7586108577680406,1.1652425432840214,6.782480320770536,75.7260513305664,180.79075622558594,0.01685306429862976,1190,50,0,96,83,406.48357583999996,5567.6805947193025,14814,1,0.10419983999999999,0.10419983999999999,12.566370614359172,1,3.1415925460576575,0,0.2282540689670175,5802,604.5674716799999,0,1.3032484410264091,,1.6546296319455807,1,5802,604.5674716799999,9.619848107607167,,,5958,620.82264672,0,1.032701640859718,,2.185661527594302,1,5958,620.82264672,0,0,14,1.4885691428571428,20.839968,2.5989256045083136,0.7059722383465579,1.3070676747680436,0.512230357903864,0.5049725058236129,8307.268517834822,173123.2100790851,0.13311709483771908,1.5409208205776699,,9.23460032365371,0.9680311281828446,8307.268517834822,173123.2100790851,8.256532339312479,3.3314383164085006,3.5714285714285716,-0.02542218752120048,8069.839971501929,168175.20677122107,0.1664219906111914,0.8400098863375941,,2.8643551539783374,0.9940190152048525,8069.839971501929,168175.20677122107,-0.02542218752120048,"CurrentSlice","Yes",1273.4199998378754,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",7,2,"D - 7",1,1,,,,851,0,74,33,170.88773759999998,0.631082418003986,0.6267297527798117,1.4928296364291667,0.29685493013961484,6.371924553998713,1.830122434019732,24.1237664223479,58.33340689670175,15536.058536585366,2654921.8945382396,0.15526732770006216,7288.195431837549,3470.1203633111973,12679.928012433258,20795081.940390542,2.132795279747685,2412.242291967348,22051,284.78656024390244,448.66877414634143,10.79848773651123,6.7677335494995114,-12.920605985822993,51.802634013484386,3,33.676429111739,1,51.802634013484386,3,51.802634013484386,3,-0.5150488254374016,0.2162329575104902,0.7265020820939917,7.27394917633228,205.2481231689453,243.2105255126953,0.004705987870693207,1862,0.06004058582612426,4701.436585365854,803417.8615430399,0.18991789874029696,3109.279603949723,2204.3543653763363,4075.0542626525958,6683088.990750257,2.132795279747685,892.8869573534397,9091,0.3709477626521231,1.8127051768166913,1.025431290898275,7.010499070645405,406.29107666015625,27.580923080444336,0.04551733285188675,1625,0.06004058582612426,0.6129446163903393,-0.4515457478220486,0.6603212373587151,7.346023518305169,92.21985626220703,560.4047241210938,0.0025005582720041275,2115,751,0,253,112,1122.02387712,2818.1524888558693,16998,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32,3.012026625,96.384852,3.3223368835707046,0.7349780853439556,2.013290944613497,0.3071889044779407,0.8223409387300309,5036.322126513743,485425.1627883523,0.16282322957176776,2.1141458170774428,8.04033246771436,5.166925363564858,0.9813782029600528,4409.939803800485,425051.3953182187,20.202941843261396,3.6479635655115166,3.125,0.12795568562684478,4176.709481661013,402571.52523689345,0.09267767694026184,0.7733156714303476,1.4623664592152854,1.3970727544804813,1.0005448131779608,1320.5789575089066,127283.80737381024,0.12795568562684478,"CurrentSlice","Yes",1286.0699999332428,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",6,2,"D - 6",1,1,,,,1547,0,24,45,69.81389279999999,0.5438254737185327,0.38220055182852614,1.6860989059937246,0.24284236207506826,4.328351460462447,4.464192388252786,14.700696179433136,40.16484413802105,28631.680597014925,1998889.0798838397,0.18615072028688537,5584.059515562129,3127.2338869392147,25970.888545258917,17400495.325323474,2.1825860657165967,5329.807966158369,39809,503.47597791044774,446.6357158208955,8.083247232055664,3.089421552658081,87.30729708097529,54.67200524306974,1,54.67200524306974,1,54.67200524306974,1,54.67200524306974,1,-0.5447606839014323,-0.5050082703928687,1.568278012920472,6.472103079341671,55.79754638671875,817.4324951171875,0.001449535833671689,978,0.5879919320276593,5372.194029850746,375053.77810079994,0.24314118253268613,1572.351805684428,2461.3893189531213,4573.438946671448,3064204.0942698703,2.1825860657165967,1306.201609212947,9306,-0.13534557831068317,0.13294018381073913,1.710848741367788,6.407180134060356,144.21726989746094,36.01177978515625,0.040865812450647354,764,0.5879919320276593,0.4051514693916751,0.32068941324072764,1.5860993539763868,6.4664029524614195,60.21672821044922,251.52471923828125,0.005389038473367691,789,1497,0,89,220,1133.06906016,2479.123781497149,19823,2,4.741092719999999,9.482185439999999,0.7952860511460604,0.7847771046883119,1.7385914708760257,0.199582597690867,1.071881457216832,8372.774789029536,79392.20319693492,0.21997971433495722,2.5815569227221076,3.2163124756291466,3.287455390576444,0.9893949896684991,5769.552977569278,54707.97123921604,18.293437929116205,4.102230225995875,1,2805.0047468354433,26597.57516957392,0.07319592026182803,1.0426133757628135,1.0541991603531218,1.0504105219482403,1.0066643348735012,144.2126950794359,1367.4515175453864,-0.2962949776212941,-0.2962949776212941,26,1.0019215384615383,26.04996,2.2945098610914534,0.6621967312641025,1.5665211474166203,0.49628887127574056,0.46458970891127654,7428.993654049505,193524.98752824342,0.22108302605284263,3.483290922744778,9.300715338774136,8.362989913956545,0.9573345302718408,6630.238570870207,172717.44956162604,27.098888774239953,3.219830113799204,3.076923076923077,0.07967188543306634,3343.1526278692068,87088.99222988772,0.07897045197458152,1.0702942360766108,1.2564501707913893,1.2285130728962108,1.0007993845668375,682.3605761131994,17775.465713325797,0.07967188543306634,"CurrentSlice","Yes",1133.8769998550415,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",6,3,"D - 6",1,1,,,,1488,0,23,22,40.325338079999995,0.8675699352344686,0.8345358271433527,1.0592192188220517,0.8162314460765759,2.6073058482643217,12.707419205579349,8.473115705571358,24.168054620746666,33804.03617571059,1363159.1872540799,0.15152311381061628,4233.25381055723,3390.9141557068992,31197.907813852402,12073590.32396088,1.7584441502605932,5122.092820710386,41620,483.62613333333326,449.9681860465116,4.006072936248779,3.3432113914489743,131.83484307489937,35.628842748191495,2,8.969170206647904,1,56.33230551779387,2,8.969170206647904,1,-1.084007952387198,0.5545311141882721,2.6507488198492344,5.940513913170352,40.633663177490234,1122.2640380859375,0.001007608138024807,606,0.3392310016454368,5175.111111111111,208688.10515711998,0.17473393490620936,973.3677786906809,2943.005673705465,4321.351942406955,1672363.2017114914,1.7584441502605932,904.2675280212898,7852,-0.37187691791739064,0.21288757855837392,2.877765091574358,5.87961726164829,80.25595092773438,30.550594329833984,0.03971436992287636,336,0.3392310016454368,1.3837494880106151,1.998613440756797,3.0246579732788494,5.846903826712237,72.75091552734375,22.597068786621094,0.05506701022386551,273,1348,0,165,218,740.6524627199999,2227.3024760832864,13637,5,2.875915584,14.37957792,1.7895510587294532,0.5371331660887151,2.82523315441478,0.1753684855422319,1.0644211919184683,7999.075164835165,115023.32462068408,0.16781889399037112,1.8597928263305783,1.8179466260494488,2.4411843999045724,0.9666799579337333,3599.0146513877326,51752.31161485153,26.373984332847083,14.376071998613186,2.4,4490.244010989011,64567.813635829814,0.20166557514136169,0.9419421740489309,1.7229558131923444,1.6540320801109416,1.0264993492151766,1884.1156491308207,27092.787786968012,-0.3192206182304361,-0.3192206182304361,54,1.6633381866666666,89.82026207999999,2.654426110047829,0.6324568628673227,1.4386831634794797,0.43503528225309657,0.5618501517547227,3481.458548123829,312705.51921313856,0.31082195694619646,2.1983881706788306,4.077799308917548,3.166395320740919,0.935101379815101,2627.699379419673,236020.64692692834,36.75063295836392,2.7780541710642774,3.962962962962963,0.21171688274968747,3061.8266554637776,275014.0726372863,0.08598865275886516,0.8816315326230908,1.1748564269799322,1.0746513887164528,0.9969250633832892,455.69829360558697,40930.94016106261,0.21171688274968747,"CurrentSlice","Yes",1146.619999885559,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",6,4,"D - 6",1,1,,,,1429,1,36,51,142.33698144,0.8388061792795967,0.9421629692564167,1.1508358909530128,0.5080017665421865,5.105939205836879,6.646726257679912,17.266028560152446,46.17777434496561,25797.431918008784,3671928.5881132795,0.22508729037813296,11547.54156391931,3281.395059101038,23191.758914206504,31679942.676806085,1.8971679308139724,5806.674049138959,40832,467.0176348462664,444.33467262079057,7.432224215698241,7.002366435241699,69.23622692309345,39.44388431543809,2,39.44388431543809,2,48.58990414245134,3,48.58990414245134,3,-0.15943202324786537,-0.8651250264761345,0.7867280900514267,7.170411566084107,103.17604064941406,689.9779052734375,0.001828022301197052,2170,0.4953291411654532,5442.711566617862,774699.1352409599,0.23389466455488014,2922.0152507514845,2868.8612527214123,4629.195723778826,6323481.358681876,1.8971679308139724,1273.0211961430512,9737,-0.02631704075104668,-0.00868569758161275,0.966796644722598,7.0147157465170356,350.5899963378906,35.691654205322266,0.036659080535173416,1761,0.4953291411654532,0.41979724024937015,0.21763613420623473,0.8038774762105859,7.153542052178343,132.4564971923828,221.58753967285156,0.006442447658628225,1862,1384,0,154,284,2612.49838848,2702.298739629866,21744,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,150,1.4643550847999998,219.65326272,2.6800111223174903,0.7382241083569413,1.4818984571824592,0.43211175579023214,0.5205072955757096,4860.209261425861,1067560.8217741516,0.20710118978724396,1.771854122321121,5.974326504158208,4.5760284369417175,0.958967348987914,4046.693418586824,888869.4126201464,40.91792746237348,3.221510632789052,4.786666666666667,0.14648600964818353,3249.809997549457,713831.3691818133,0.06878461304560991,0.8481794986429287,1.24720561360049,1.1512422957041788,0.9973510191278564,644.1369937471754,141486.7923152193,0.14648600964818353,"CurrentSlice","Yes",1159.3239998817444,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",7,1,"D - 7",1,1,,,,1042,27,56,63,155.15356175999997,0.5479350915980236,0.3201348732721514,2.028972893029161,0.14833379030283222,7.078301331233088,6.974966466505053,24.349478220282254,59.65148358645894,24422.292142377435,3789205.6122331196,0.2166661329744795,11630.313743393473,3289.3430795840645,21655.565733163006,32245137.376679715,2.3095856336352236,5291.483596861935,39164,345.1193762256548,434.2817657488247,13.48254097137451,4.316231545257568,49.27117679768468,113.9691952466349,2,90.38073223002968,1,114.81696589812866,3,90.38073223002968,1,-0.13003145280033357,-0.6187802912955607,0.7302262709162016,7.24766194765824,121.65704345703125,607.6485595703125,0.0020460549276322126,2356,0.3458049105457975,5275.648085963734,818535.5911296,0.3140459082502013,4537.485698907386,2284.2400858114147,4561.847632222865,6792591.124379846,2.3095856336352236,1656.7956947649168,11482,0.27350224699020825,0.05253441574020634,0.8032940015452472,7.177711963001312,347.2078552246094,35.09494400024414,0.04446328803896904,2117,0.3458049105457975,1.3128125582244583,1.5262132231299885,0.7816443035810856,7.195173208661276,208.79295349121094,84.73395538330078,0.018795816227793694,1932,930,0,301,448,2828.1920572799995,1925.677252965883,20532,10,8.523546911999999,85.23546911999999,2.124135762292183,0.6880270387885832,2.0828249054356296,0.3958613792055652,1.329420933474184,8456.612695809094,720803.3502934359,0.14964594389458688,2.001936304049045,1.6764419901749097,2.4116790679718934,0.9952320896615051,3412.231354032524,290843.14020693494,56.522669158264144,25.28464154953837,1.8,4850.620067334627,413444.87696215283,0.07398080927064656,1.159206085806761,1.7531983108918552,1.779424918789892,0.9975979732188597,2083.8936581201965,177621.65354606783,-0.008825734530707901,-0.008825734530707901,49,1.4502916506122447,71.06429087999999,2.4382577905748857,0.7048211538887027,1.3396045434422326,0.52381282378263,0.5132930845723148,3855.9257784016,274018.6311280217,0.19615176859923833,2.5848136448581878,5.40196599510907,4.286358791071416,0.9723397450689282,3142.1253246607307,223292.90805310456,45.39822861143236,3.922502586052549,3.510204081632653,-0.05313236834322635,4047.220752458612,287612.8728082912,0.1068383472621049,0.9949944436622622,1.4628192867135565,1.4365436814771588,1.0094179739784623,1280.494343244182,90997.4224784991,-0.05313236834322635,"CurrentSlice","Yes",1273.4199998378754,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",7,2,"D - 7",1,1,,,,1047,0,64,25,121.08021407999999,0.6197457000756758,0.4726961001965068,1.5251465116432004,0.2867224557310454,5.42128747318897,2.9160970498032097,20.644063204708512,49.54898482769122,20111.47418244406,2435101.5994747197,0.1655753979744847,6723.1158206294585,3470.1203633111973,17222.912538608445,20013024.369863015,1.642488804648778,3329.9653416117494,26962,346.5616358003442,449.68206815834765,9.80373365020752,4.634186663818359,-6.787725331423807,50.103390782917856,5,36.29135746937594,1,50.448919389665754,4,49.037371488399536,2,-0.40499168854457435,-0.4204960233315638,0.9227961760985421,7.008533637110927,124.1983642578125,403.3360595703125,0.002827700460329652,1467,-0.22408969030675774,3620.6273666092943,438386.33665295993,0.24328521013350016,2046.561507076215,2204.3543653763363,2949.7871839608924,3427652.707762557,1.642488804648778,880.8450897006435,5864,-0.337465811777167,-0.462943761854671,1.2234825705576178,6.791491098510311,229.73435974121094,14.715466499328613,0.09843631088733673,847,-0.22408969030675774,2.1658959464021375,6.129517500288419,0.9894507955599136,6.960046612387254,114.03065490722656,144.53768920898438,0.010642937384545803,1207,924,0,228,79,877.6752523199999,2271.612608334323,11607,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36,1.84086384,66.27109823999999,2.74041086820825,0.6924877218233187,1.8609167868709926,0.3286701667793801,0.6588475408918382,3023.062987221638,200341.70421187303,0.24852350506533172,1.5919969955219675,4.506383286831335,3.1014578559418142,0.9888700867066511,2352.2228045732363,155884.38856424126,27.386163730118096,2.7477962850412436,3.5,0.07115684628536284,3496.143823329611,231693.29077704583,0.08306643441735756,0.7988385586718627,1.2103407350819795,1.1694295001280728,0.999635998828713,607.5821794939948,40265.138306119836,0.07115684628536284,"CurrentSlice","Yes",1286.0699999332428,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",7,3,"D - 7",1,1,,,,1632,0,32,26,67.00049711999999,0.8841448222016636,0.8735516543430009,1.0926354035368426,0.6094170760564803,3.413396179643354,1.0278397663632621,11.462809351986971,30.85902786215298,20053.615863141524,1343602.231884,0.1636430091518653,2924.98538325703,3551.4638913438594,,,1.5264800583896354,3281.6340442200594,38526,532.1285206842924,448.9028491446345,5.144271284866333,4.493786691284179,-27.52773944240366,24.603493231691484,1,24.603493231691484,1,24.603493231691484,1,24.603493231691484,1,0.9170366948804713,5.404677763047896,1.6471197173049155,6.426523345320166,88.79486846923828,408.97882080078125,0.0027476639952510595,897,0.29380723512597806,3654.636080870918,244862.43421103997,0.3369367734911228,898.8579297524979,2394.159072557022,,,1.5264800583896354,1231.3812893728891,12772,2.32950790132169,11.56323643742844,1.7777283292497985,6.369654136093289,144.2672882080078,21.360063552856445,0.07159563899040222,636,0.29380723512597806,2.10259237138838,7.3258262344342135,1.6761438532926674,6.412245254520672,66.56991577148438,204.69915771484375,0.008194572292268276,944,1621,0,43,55,180.68252255999997,3000.1089965397923,12772,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,0.3473328,1.0419983999999998,4.1887902047863905,0.6666666666666666,0.7853981454754256,0.6666666666666666,0.20596937931134504,6829.416666666667,7116.2412396,0.28799563282973123,1.4650259079150596,,7.631654014417296,0.9999999999999999,6829.416666666667,7116.2412396,8.156950476347005,2.4345020402606874,2,0.01014538490274064,3226.3333333333335,3361.8341711999997,0.08258540988066458,0.4503554772198115,,1.0471986550571137,1,3226.3333333333335,3361.8341711999997,0.01014538490274064,"CurrentSlice","Yes",1298.7469999790192,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",7,4,"D - 7",1,1,,,,273,0,35,28,71.58529008,0.8006303560773761,0.7076362043716623,1.1175924923257137,0.6372531276548126,3.5683192925323266,10.897215423493368,12.626391218396488,33.51975227595509,23098.152838427948,1653487.9712510398,0.15415079248723795,5659.152731506285,2952.5491729190467,20891.020626889487,14352131.170673078,1.5999625585897308,3560.598565035013,33554,92.92364192139738,449.0246672489083,5.825472143554687,4.122314996337891,-39.12497907039633,96.26673798885065,3,55.24593090838395,1,70.68564795667635,2,70.68564795667635,2,-0.34380860527987844,0.9808908014910833,1.5488305375988678,6.489196839926451,72.63813781738281,532.9794311523438,0.002157380571588874,923,0.2488293219887092,3383.7496360989812,242226.69925823997,0.20627683336696268,753.7954938403651,2114.893012922471,2733.1342514835965,1877663.2307692308,1.5999625585897308,697.9891598411101,6203,-0.01051608867235057,0.5598127084341877,1.8751231542749631,6.350684227349646,178.74786376953125,14.778534889221191,0.08776970207691193,587,0.2488293219887092,1.4540054658383486,2.057719150612419,1.5149300059961566,6.504083752112191,70.52919006347656,365.3389892578125,0.0038885558024048805,1062,108,0,218,298,2656.7833204799995,3091.9870965211594,17652,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,113,1.3582864099115042,153.48636431999998,2.5925321588068937,0.6404410883560435,1.4245663201161956,0.41278130731420476,0.5044512768152796,4547.165633637177,697927.9210678193,0.20115318231652918,1.7508594551386545,6.98902261022503,5.850373416314697,0.9740967047552657,3896.5502490217923,598067.3311125454,41.155598057507405,3.2554695994951643,4.035398230088496,0.07924742709351458,2907.513373968751,446263.6569822401,0.08445789396478533,0.9653652766067192,1.317326329056697,1.1936079262273693,1.0006388047801862,700.3811624302894,107498.95825964048,0.07924742709351458,"CurrentSlice","Yes",1311.4539999961853,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",8,1,"D - 8",1,1,,,,83,0,59,52,212.98447295999998,0.7882969035387386,0.601975938079297,1.1644051763043288,0.5216422992022625,6.28255243376511,1.7444519390186357,22.082917633320104,58.26852082777824,14601.466242661449,3109885.5921364794,0.18460168554185222,12180.81574577229,2752.2032226481174,12530.792320339639,25612939.50277422,3.4594419296532313,2695.455279777759,25087,35.51463287671233,445.5276440313111,10.765103677368163,6.480333384704589,-42.017509402083704,27.22916297030467,1,27.22916297030467,1,44.97751386216556,3,44.97751386216556,3,0.2173280345814676,0.406218084272985,0.6079556986990706,7.463842750391237,240.37086486816406,227.50413513183594,0.0051817502826452255,2416,0.2584375609802025,10253.673679060665,2183873.28443856,0.2878429638273793,5608.732350633136,2963.9675668984205,9467.422291950123,19351411.16474605,3.4594419296532313,2951.44782189961,39734,1.9095148393376786,10.643227192476814,0.6127427514447324,7.457572472835625,295.7677001953125,126.79399871826172,0.011241947300732136,2699,0.2584375609802025,1.7523769927358912,2.5163751548276405,0.5734889189303044,7.50938691591568,132.49073791503906,315.2789001464844,0.010374540463089943,2431,0,0,250,169,2069.4088223999997,4407.487210473313,54637,1,0.6251990399999999,0.6251990399999999,1.2860574036336334,0.33510876842936244,1.658062918076382,0.14321996862633124,0.40618109261741075,6961.5,4352.323116959999,0.17636726588587887,2.6455005988174403,2.3680995076015776,2.238440132702689,0.9805698257718152,4021.8008962868116,2514.426059429654,30.60142547306334,,,2076,1297.9132070399999,0.0513000126611812,1.0039179534454943,1.002572146981123,0.9707696102180989,1.0163776493264047,5.326077678190359,3.329858651370041,-0.4270909534125694,-0.4270909534125694,58,1.4605943089655171,84.71446991999998,2.7509572235636885,0.6500545509096071,1.4654671289981307,0.42287335361453016,0.5288780413077492,6236.29245936763,528304.2099614219,0.20930180858050304,1.7549596405787888,7.931677529099031,7.064484253639734,0.9699938431646477,5450.041072257088,461697.34047848755,23.600241312422696,3.413073846465409,4.241379310344827,0.01872567793525197,2430.6959773615044,205915.12125885615,0.08164984794377367,0.8320458367358958,1.1738670928139223,1.11742366421505,1.0065522427673073,360.0220550396948,30499.077552196806,0.01872567793525197,"CurrentSlice","Yes",1730.5569999217987,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",8,2,"D - 8",1,1,,,,547,0,57,24,92.32105823999999,0.6095139711564137,0.5143012316749883,1.4324366419992425,0.37831130479526853,4.587733188617992,0.6264486591062837,18.079681913131104,43.62781737942736,21088.001128668173,1946866.5803649598,0.19412172642175052,3642.823317439421,2930.4928771881255,,,4.5335865556144235,4093.6391858808893,27289,184.82631738148982,449.9985020316027,8.159973554992675,4.196684449768066,-5.171195219550097,39.485399677830486,3,15.526935022566478,1,47.8169591854334,2,15.526935022566478,1,-0.7590417202584717,-0.33021684988537325,1.215292816778684,6.7354664812559095,75.0075912475586,418.36053466796875,0.002952015260234475,1054,0.47960660340794886,14911.046275395034,1376603.5716100798,0.140805149280333,2050.9945478706245,3289.017666802699,,,4.5335865556144235,2099.552096732951,22810,-0.31198182245112593,-0.10587555097613466,1.253509572023297,6.711996486428824,109.93687438964844,219.77186584472656,0.005057464819401503,903,0.47960660340794886,-0.13042411296334772,-1.0844288000271054,1.169432710485149,6.761682289456189,49.2935791015625,280.877685546875,0.007519841194152832,981,529,0,103,33,213.92227151999998,10096.566000974184,22810,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,0.36469944,1.45879776,3.4520501103405774,0.3236077619379387,1.025380967618094,0.3014705882425623,0.23846757707175156,12044,17569.76022144,0.1385698817450276,1.5695739827219959,,11.283045159591897,0.9642536226097784,12044,17569.76022144,6.458731713066044,2.471062697411751,3,-0.18475595496840694,4602.208333333333,6713.691207719999,0.11532153368769014,0.8588824904505364,,1.8136083409590276,1.0122756257084378,4602.208333333333,6713.691207719999,-0.18475595496840694,"CurrentSlice","Yes",1743.3399999141693,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",8,3,"D - 8",1,1,,,,23,0,9,7,5.418391679999999,1.1440256486341898,0.8237554714225298,1.037560295470646,0.7516096036293072,0.9459146205075496,5.684501570510419,2.7580044089884987,7.714756965538245,2590.269230769231,14035.093248959998,0.04193172905476063,55.53962956230224,3153.241964792962,,,1.6475520228470273,108.61446756349862,2860,8.771469230769231,451.82067692307686,1.4602007194519042,1.2028483320236205,-9.891076333931132,15.596522867525623,1,15.596522867525623,1,15.596522867525623,1,15.596522867525623,1,0.5379252057596421,-0.6952367189206474,19.970414201183434,3.924584211636814,16,9,0.1111111119389534,16,0.34655731817078483,5017.057692307692,27184.383658079998,0.08773891490072873,91.42601630125063,3045.158891940809,,,1.6475520228470273,440.19119791743105,5906,0.28513065396952475,-0.9886185431986272,20.710059171597635,3.8979247046922008,14.517241477966309,30.310344696044922,0.03409961611032486,29,0.34655731817078483,-0.5630782143761461,-0.3815616790739682,19.970414201183434,3.924584211636814,15.176470756530762,269.70587158203125,0.0037280062679201365,34,0,0,44,49,170.15833872,2922.4249846907533,6720,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1756.0569999217987,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +1,"D",8,4,"D - 8",1,1,,,,0,0,22,17,29.488554719999996,0.8362290120011548,0.9791298688285579,1.1700622454788165,0.5639781070441596,2.3433722768934353,6.159621907529179,8.147103662038429,21.050822069010525,14589.657243816255,430227.90598031995,0.1410338568224927,1634.8559854583443,2968.615114766798,12433.737468445215,3518747.7035699957,1.7243523460645787,2057.635630813625,18081,2.9074812720848056,450.7770826855123,3.3487895622253414,3.278899884796142,-23.19303882110674,75.52460036225908,2,66.67882140247033,1,75.52460036225908,2,75.52460036225908,2,-1.3299707332739543,1.5456956309467396,3.683402215035773,5.616055497760837,42.02950668334961,208.3409881591797,0.005507312249392271,305,0.6239220717594628,6477.491166077739,191011.85269919998,0.06130823255375818,465.31523231419806,3756.4777180609644,5146.700552359327,1456516.2563176895,1.7243523460645787,397.12353477480826,7184,-0.9823661059757831,1.864612727026369,4.357652112025372,5.4898934648437825,43.98113250732422,42.443397521972656,0.024604298174381256,106,0.6239220717594628,1.498623288126175,2.3730872068817215,4.157874364769195,5.526032364743442,55.141414642333984,73.15656280517578,0.014584947377443314,198,0,0,135,38,324.26990207999995,4170.340938303342,9703,2,0.26049959999999994,0.5209991999999999,4.319689898685965,0,1.0908308333089494,0,0.21248254816174245,10425.833333333332,5431.850825999998,0.01789321772219129,2.1591691040695222,1.8334694771548197,2.6890449213244727,1.005164504903454,4739.437424789409,2469.243106765342,7.524613250569602,5.003399999999999,1,2658.083333333333,1384.8592901999996,0.04486244592382876,0.9399259591374736,1.232923118800128,1.0074125312845101,0.9958650942038844,502.1635579622939,261.62681196750873,-0.9272447816859402,-0.9272447816859402,16,1.2503980799999999,20.006369279999998,2.551160782596008,0.623564918769657,1.5542703824952127,0.34331535007553415,0.5217936680460948,5851.356653558305,117064.40200007246,0.1200308482784605,2.6203813392842212,4.396902557952984,3.4330597860963263,0.9759061514785077,4520.566039839893,90440.11354766408,17.18472122508411,3.5957776771667813,2.875,-0.018933022275841038,2476.514144626673,49546.05650454454,0.05158134184505314,0.9576429245717535,1.148704220313791,0.9246010368189621,0.9978664672174135,320.59436925563386,6413.929340416889,-0.018933022275841038,"CurrentSlice","Yes",1768.7799999713898,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",7,3,"D - 7",1,1,,,,293,1,70,23,138.37738751999998,0.6352308870852884,0.33496988355099666,1.7196138384979325,0.19081511811822804,6.1540087076685515,3.2424471651157734,22.387523989936895,52.320476689757186,27954.01957831325,3868204.1999299196,0.26942514619347363,10682.323076631874,3551.4638913438594,,,3.4674806684162367,7531.515811582271,49087,105.68685903614457,449.312806626506,11.67070431060791,3.909334463882446,2.3598277695410768,43.285230052561076,3,26.34104264699235,1,39.37358050914077,2,39.37358050914077,2,0.16577571250373282,-0.4884542836025587,0.7938380026128611,7.154498945410655,79.14759063720703,827.4668579101562,0.0016520239878445864,2114,0.6070410676471737,8301.700301204819,1148767.59965472,0.19346096884310449,3170.3034407450127,2394.159072557022,,,3.4674806684162367,1606.0549833161765,12915,-0.1690379258995591,-0.3434510151678869,0.93899695166207,7.032716267518504,252.74668884277344,79.40451049804688,0.014870177023112774,1508,0.6070410676471737,0.43252237389261816,-0.9603622654427579,0.7802293511394977,7.16637581748602,46.32475662231445,1259.21044921875,0.0015588067471981049,1943,193,0,369,63,1014.3854423999999,4135.5736004108885,26600,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30,1.1913515039999998,35.74054511999999,3.3043292047628015,0.7737631735817874,1.4188418981397144,0.5721646174550046,0.4465927861873433,5830.161660937101,208373.15589961657,0.2357838133283686,1.604526533712726,,6.515018604965154,0.9331508947285444,5830.161660937101,208373.15589961657,33.61772716568161,3.4988136203075033,3.8,0.018971984172750363,3344.8218665648074,119545.75684032211,0.060927238996649306,0.8457120247514773,,1.085657493565128,0.9996604300980524,3344.8218665648074,119545.75684032211,0.018971984172750363,"CurrentSlice","Yes",1298.7469999790192,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",7,4,"D - 7",1,1,,,,1014,0,28,10,21.04836768,0.6352514053306938,0.37579270315172325,1.6511542578116374,0.23880705697911075,2.3518687797405655,17.022297590601998,8.739478400911578,20.405222069010524,18345.935643564357,386151.99885935994,0.22038199509782558,1354.6692794948244,2952.5491729190467,16010.91444215093,3234204.717314488,1.8138852622269084,4043.1138990650234,23958,331.4101306930693,451.75220792079205,4.405779349136353,1.6556597311019896,-2.200781793506965,56.142226118580695,2,55.14113201584115,1,68.66848375712311,3,55.14113201584115,1,-0.596495210310164,-0.7454439435685334,5.048524654445642,5.294542010657445,22.531352996826172,321.0726013183594,0.003946639131754637,303,0.2978322076551187,3836.1732673267325,80745.18541487999,0.09003578042023345,360.57035522726426,2114.893012922471,3207.0796277507607,647830.0848056537,1.8138852622269084,345.3928539509992,4689,0.01870172598740678,-0.09603072017804504,5.587687481619449,5.219050733566758,39.32500076293945,18.6875,0.05733680725097656,80,0.2978322076551187,0.44703391747746024,-1.1600103310277061,4.9504950495049505,5.308267697401206,29.145923614501953,183.68240356445312,0.006169987842440605,233,811,0,250,219,1992.0925411199999,2166.9399518778114,11677,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,109,1.5591737526605502,169.94993903999998,2.815098595556015,0.6275735799169402,1.5938818005454432,0.3996395488956974,0.5710789449253681,3984.788134199157,677214.500494462,0.21557136129046056,1.670693195811888,6.334173298723901,5.126819748441369,0.9643123306320434,3355.694494623185,570300.0747980739,47.76977595532734,3.2539357828600406,4.458715596330276,0.05969720048863588,2833.7420875912217,481594.2950412104,0.0774674761392985,0.9154467544685917,1.2135830226620254,1.1633229435557284,0.9985985530319371,498.720886177794,84757.58420389086,0.05969720048863588,"CurrentSlice","Yes",1311.4539999961853,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",8,1,"D - 8",1,1,,,,426,0,76,59,285.82016111999997,0.7255379059241372,0.5596710566988752,1.3239349351593186,0.35151235320378205,7.760501866450528,2.736386676160265,28.60015286672433,70.35926731059088,13135.902296755377,3754505.7109151995,0.17472657043850684,13967.30519343119,2752.2032226481174,10953.044984220734,30044202.391717475,3.0733983918096572,2295.1911579273724,19150,149.11983127962085,444.19727772511845,13.54419268798828,7.580292633819579,-35.93737142442731,88.12477041682364,4,70.68811497489509,1,81.91620118225183,2,81.91620118225183,2,-0.42506571080566014,-0.2425664466528965,0.4985347649915624,7.684184965240137,417.2237854003906,180.2714385986328,0.006401660852134228,3441,0.08884830968790548,9109.453153481589,2603665.368043199,0.17773928789040935,6090.839466729058,2963.9675668984205,7973.025843322432,21870009.88823343,3.0733983918096572,1619.1077165708614,14934,-0.02683527535217461,0.12134466698109758,0.5267110833541887,7.637153728716468,613.1891479492188,90.9737319946289,0.01284987572580576,3807,0.08884830968790548,0.7305551627167829,0.14158410181414505,0.3980569504531403,7.855015725645232,144.30636596679688,425.548828125,0.007462529931217432,4302,319,0,252,235,2286.3528892799995,4728.363139185124,52495,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,132,1.5369476399999997,202.87708847999997,2.39190947465667,0.6214117660529569,1.615906155635531,0.3757888898038613,0.580991732914326,7828.995445317064,1588323.8016691068,0.2267978355083701,1.700997280372077,6.889129973672145,8.868701300591008,0.9600694004511485,6692.568135157906,1357768.737714859,30.377129221405568,3.299739689310588,5,-0.022335191921230343,2706.58195667923,549103.4671035836,0.09027395763027068,0.7661834186652466,1.2399261926728782,1.2442521630425367,1.0005482626063456,523.7246441445877,106251.73096927803,-0.022335191921230343,"CurrentSlice","Yes",1730.5569999217987,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",8,2,"D - 8",1,1,,,,1030,0,62,42,155.67456095999998,0.6677155697107768,0.6817099189623439,1.4953512285390087,0.26390044999726103,6.086820596106716,4.000507906154534,22.14417411058719,54.12750455191018,22581.69812583668,3515395.9414708796,0.15253718216191076,10124.206303625406,2930.4928771881255,19872.888773318693,29690095.827338126,3.111817670204888,3444.5486005460284,31781,342.71269799196784,446.4470923694779,10.06006537399292,6.8580463508605956,-29.942277292239492,53.086067481952895,2,27.920348759967865,1,53.086067481952895,2,53.086067481952895,2,-0.7221906696474366,0.7171313869235281,0.7589483323745674,7.2217434432793635,182.1442108154297,510.947998046875,0.0022335266694426537,2115,0.32390851891688893,10234.82329317269,1593301.6226678398,0.20241982990650376,3969.3937934326204,3289.017666802699,9323.168616913697,13928813.913669065,3.111817670204888,2071.7311901271387,18813,0.16628825220426005,0.4628940691479224,0.8189832063640551,7.161761524005076,258.85699462890625,118.16236114501953,0.010317917913198471,2014,0.32390851891688893,0.11866079993477993,0.13107090380755881,0.7114580589201966,7.267333720230534,85.74847412109375,437.48095703125,0.005021467339247465,2127,835,0,301,191,1345.84513344,4590.46492722205,23690,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,65,1.4507823876923076,94.30085519999999,2.697187213512332,0.7266953383462461,1.56270955543319,0.4524052412980419,0.5411089991079823,6718.1017839129545,633522.7435436371,0.2264512249625562,1.9569927678298047,7.369129955523206,6.293643790653001,0.9624570543432273,5806.447107653961,547552.9279253349,34.82460375960151,3.4115954318650785,4.246153846153846,0.09372007277690642,3256.403988837166,307081.68102403596,0.07105906240187046,0.8851778015354094,1.2021532581501762,1.2832625139787601,0.9993881042585169,547.5946363191802,51638.64250783166,0.09372007277690642,"CurrentSlice","Yes",1743.3399999141693,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",8,3,"D - 8",1,1,,,,45,0,60,9,44.284932,0.3406422720824765,0.15573022245995757,3.4441560681152623,0.04735160302671482,4.926964902353773,4.976547167577479,19.047935396782506,40.418822069010524,16755.72705882353,742026.23341056,0.23933160797577882,2720.860737941707,3153.241964792962,14556.491764705883,6186509,2.112540397644259,4010.1750997915024,23333,24.367982117647056,451.8030324705882,9.736578261566162,1.5162794986724852,0.039564682648452476,15.596522867525623,1,15.596522867525623,1,53.816928635067185,3,38.88946208183428,2,-0.49267079842614475,-0.8094336497261754,2.3972318339100345,6.039041692584465,40.20418930053711,271.63525390625,0.004946278873831034,573,0.9036218885981804,6433.021176470588,284885.90535455995,0.1253736492915497,1353.9082422008155,3045.158891940809,5765.903529411765,2450509,2.112540397644259,806.5313408639361,7975,-0.053198875874107265,-1.1940978055321418,2.7294117647058824,5.943216317016838,65.96916198730469,45.4052848815918,0.02386198565363884,227,0.9036218885981804,-0.24102847276973843,-0.11535047137114285,2.6186851211072666,5.975835007866718,72.51219177246094,245.69512939453125,0.004129435401409864,246,5,0,338,61,776.1846081599999,2271.1839173043363,7975,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,0.5557324799999999,1.6671974399999998,5.755879836936966,0.9481372301754144,1.6457366100284692,0.5549940914089434,0.29526504285712185,4067.8560606060605,6781.9192105309085,0.20519196679733934,2.3517730163127157,6.097659203800637,4.209944587469774,0.954259674581578,3400.738413547237,5669.702377175614,37.720408319036665,12.824765537670787,2,-0.029955473507685005,2546.878787878788,4246.149795141818,0.03891381295526699,1.046774859924365,1.1580747156482039,0.9360896799276394,0.9993510851796491,347.64349376114114,579.5903428312304,-0.029955473507685005,"CurrentSlice","Yes",1756.0569999217987,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +2,"D",8,4,"D - 8",1,1,,,,1222,0,73,40,190.78990703999997,0.6590204997179699,0.9680447104822819,1.4674739974127042,0.2875707890334559,6.675333573599573,7.3798356134826575,25.178399999999996,60.3160882760421,17357.223375204805,3311583.034227839,0.14865527850773194,10466.306965377296,2968.615114766798,14690.031015775157,26897446.789884314,3.1968291807723896,2580.2428749619853,24753,404.74765461496446,447.47308181321677,9.591088362121582,9.28460235671997,-21.847028506595016,17.63722751001378,1,17.63722751001378,1,17.63722751001378,1,17.63722751001378,1,-0.46756884116566133,0.1168566269843212,0.6487577705521242,7.38804841550774,253.80902099609375,301.71160888671875,0.0037072186823934317,2351,0.007852975055929308,12008.81758601857,2291161.1908968,0.20337044430985443,3840.5253753730804,3756.4777180609644,9916.641570414587,18157370.71542911,3.1968291807723896,2442.23856810459,26817,1.5373521964075214,4.707553087764881,0.6976755978489281,7.3347491498119926,295.9725646972656,164.6165313720703,0.007161145564168692,2334,0.007852975055929308,1.5654267499988839,3.342849184230232,0.6189298270784632,7.4240192146265676,156.9850616455078,306.39459228515625,0.004633406642824411,2410,908,0,404,98,1908.7326691199999,6353.373839938858,32076,2,0.5209991999999999,1.0419983999999998,3.708747650994132,0.2263319738087703,1.1658253451966583,0.10087965204189975,0.3071638133344928,15002.125,15632.190246599997,0.036938295508151725,0.6296868946814986,1.3351386447620175,3.869368207848285,0.981820734189654,3765.745123755716,3923.9003937612583,52.950837458129165,37.43632032218177,1,2953.5,3077.5422743999998,0.11056231748831148,0.5197568953981117,1.107344203937198,1.1193753310275454,1.0511807559903394,286.3076405703523,298.33210338208215,0.7391384045193994,0.7391384045193994,142,1.7207649633802813,244.34862479999998,2.6804051611512882,0.6732078095986739,1.7827952384732488,0.3914129848008552,0.6370891404812467,7594.455464290606,1855694.7488042552,0.19687995367547786,1.5526113012950904,3.6299314243396457,4.455756364791171,0.9622276755823749,5502.279448686624,1344474.4165518787,62.33751152214646,2.9613022760942993,4.197183098591549,0.07072047012053725,2963.173999205883,724047.4917490737,0.07437676801011545,0.83022926264278,1.1109712386246966,1.1062944089720752,0.9995077215547863,295.98163977623517,72322.70664537203,0.07072047012053725,"CurrentSlice","Yes",1768.7799999713898,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",7,3,"D - 7",1,1,,,,131,10,83,39,249.55861679999998,0.7090520584070303,0.4735049571457055,1.3648724613374408,0.3284595279534068,7.362789421593964,0.7576413798045458,26.595272397928166,66.50467200017404,17617.2,4396524.06388896,0.20178456662971636,13223.32251271089,3551.4638913438594,14938.482567049808,35777665.74808429,2.7811411695987878,3554.8790672290393,29094,54.88516509394572,443.72087999999997,13.30896750640869,6.301862088775635,4.830712979559749,37.94198888842552,2,24.77544863744936,1,50.8248378916952,3,43.54195316641524,2,0.0006712351009829377,-0.3467830319650673,0.49319868724421534,7.662285245667259,275.1636962890625,326.1781005859375,0.0036540136206895113,3543,0.327184783457021,6658.494363256785,1661684.6432649598,0.20790272174043428,4914.894438281592,2394.159072557022,5791.604516513489,13870892.817049807,2.7811411695987878,1384.3191008144254,11414,0.3154233528355368,-0.049068022731256544,0.6113990088955331,7.492125830454616,657.4657592773438,51.67341995239258,0.023211389780044556,3405,0.327184783457021,0.25438480228687604,-1.1127279890826898,0.4492658243295662,7.730266879041201,104.40971374511719,639.0784912109375,0.006024910602718592,4076,0,0,401,91,2550.60368352,3578.6672930795,22028,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,110,1.1282000858181818,124.10200943999999,3.195529100619299,0.696390648868968,1.4423281152295182,0.4409079225550765,0.4408098978966884,6387.988619239845,792762.2239275158,0.1660382467247579,1.4798254753920965,7.36885850403952,7.138372333909499,0.9719622122541096,5521.098772496551,685179.4519835393,32.215588952442,3.052991824879432,4.290909090909091,0.2023569964769521,3714.7644360206446,461009.73110641027,0.07553155536152752,0.8299453973986971,1.386769798981525,1.2057329232115352,0.9998084188718878,1036.0470030704528,128575.51495533303,0.2023569964769521,"CurrentSlice","Yes",1298.7469999790192,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",7,4,"D - 7",1,1,,,,1314,0,7,3,1.9797969599999998,1.0858586384011446,0.4644267699948812,1.357585853407986,0.29080427251593177,0.6540395738940149,14.011231896229924,2.0415664574047057,4.78661627586807,9577.315789473685,18961.140684960003,0.2323109579297995,64.63952804668162,2952.5491729190467,7170.938430983118,136247.83018867925,1.3013225150967636,2224.915405448826,12958,425.1276,452.56559999999996,1.1901720005035399,0.5527477379322051,6.20883063585907,33.89331130519559,2,33.89331130519559,2,53.83587388153304,3,33.89331130519559,2,0.10503308758205884,-1.2940231144184215,58.17174515235457,2.871476118054867,4.862069129943848,96.03448486328125,0.012932679615914822,29,0.7398650105605611,2752.157894736842,5448.71383344,0.14125571508608034,29.17576746779548,2114.893012922471,2111.4409136047666,40117.377358490565,1.3013225150967636,388.75803145085405,3252,-0.6020206117280469,-0.6869261176658954,52.63157894736842,2.9444389791664403,9.199999809265137,10.600000381469727,0.11041666567325592,20,0.7398650105605611,1.3077169276541152,1.9544612663988854,58.17174515235457,2.871476118054867,6.363636493682861,189.5454559326172,0.005397449247539043,22,1265,0,60,37,169.42893983999997,1803.4913899138992,6531,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,1.14619824,2.29239648,2.142624229631161,0.5789809080660793,1.0837547748779495,0.48070329863084266,0.4197165614143222,4554.157894736842,10439.935527258946,0.15774099889087562,3.266130170758247,7.107908840952135,5.859369644240682,0.9594575253704896,3913.440913604766,8971.158175035549,10.4045309612036,3.8597734460232114,1,-0.2488943106944953,2948.289473684211,6758.648411494737,0.10868298584403821,1.1188040155135572,1.2251983103487836,1.2103475485647124,1.0082651814540333,541.9121151936447,1242.2774253392654,-0.2488943106944953,"CurrentSlice","Yes",1311.4539999961853,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",8,1,"D - 8",1,1,,,,25,1,7,5,3.0217953599999996,1.168910332936675,0.878880112432119,1.0809892498546567,0.5973426510940009,0.7210298888687512,17.09480571370762,2.1654082294107964,5.69963255173614,2223.1724137931033,6717.972084479999,0.035356441941688015,29.663476261639968,2752.2032226481174,124.46653144016227,3609.529411764706,1.3769521046348936,78.60346637463826,2354,9.0384,451.88660689655165,1.0831771745681762,0.9519828769683837,-17.851412113966475,27.22916297030467,1,27.22916297030467,1,47.429864766333786,2,27.22916297030467,1,-0.42938982973153783,-0.42101862241664145,39.239001189060644,3.2716893223230334,12.5,8.375,0.1284722238779068,16,0.36084328528478066,4081.2413793103447,12332.676263039999,0.07495375258183046,38.59552129891453,2963.9675668984205,3214.653144016227,93224.94117647059,1.3769521046348936,305.90435657155604,4597,-0.3938427786857985,-0.8360951045095657,36.86087990487515,3.3194925761547536,9.526315689086914,20.263158798217773,0.0518421046435833,19,0.36084328528478066,0.3162982096351904,-0.5312935900026292,36.86087990487515,3.3194925761547536,10.789473533630371,87,0.01160493865609169,19,0,0,49,115,315.93391488,3076.278364116095,15197,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,1.14619824,5.730991199999999,4.4727275647706275,0.6777597030506909,1.4931979736403644,0.3792010959162776,0.42402538717498434,6570.902115384616,37657.78219933061,0.2188505728025732,1.9240135601967396,7.582496331899163,7.443530724190845,0.949963381644447,5704.313880090498,32691.372648836496,7.558222554195901,4.837251368409126,3.2,0.06907929440337825,2235.256346153846,12810.234449551845,0.0424238037557791,1.0195334430143042,1.0650641259211668,1.0275774346285929,1.0007328413714172,136.55046380090516,782.5695063989059,0.06907929440337825,"CurrentSlice","Yes",1730.5569999217987,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",8,2,"D - 8",1,1,,,,1402,0,44,53,174.95153136,0.7529486808131127,0.9688791175924341,1.161402271193008,0.5675884016541137,5.686699348418559,1.9909736034846344,19.888252629127575,54.03574179322947,14459.05122096486,2529633.1531204795,0.1576645607711186,7966.760153306108,2930.4928771881255,11866.891538565214,19924510.893250994,1.9613907531441017,2279.6799599205306,23779,460.5529293627159,445.55070804050024,8.168372827148437,7.914165856933593,66.45207792041334,95.36056287399039,4,88.11485316011785,1,95.36056287399039,4,91.00524727169804,2,0.04576066896766611,0.6150903367566696,0.7346469952015596,7.273484679831008,217.78175354003906,217.02638244628906,0.00519165676087141,1819,0.23358720855059867,6451.048838594402,1128620.8731902398,0.1503695083342887,3745.90780156575,3289.017666802699,5661.035164134763,9504878.040582268,1.9613907531441017,970.0410420999243,10310,0.3332626893556517,0.7960193346977125,0.9247825767699016,7.094287912450055,474.62420654296875,48.2479133605957,0.023280803114175797,1916,0.23358720855059867,0.2221502744528995,-0.11412149862194365,0.8573837698706759,7.148205333544069,303.38714599609375,33.76410675048828,0.035537317395210266,1276,1367,0,178,164,1634.0618908799997,3272.6090422140032,25343,3,0.9030652799999999,2.7091958399999996,1.0792659365052124,0.42207414489359674,2.1902834030086513,0.1508749899514837,0.5390350045067892,7972.257575757576,21598.407059650905,0.10485867677416154,1.284210855210335,2.723778502238581,2.4552541174338316,0.9865790360641019,5045.346459745225,13668.831640100489,4.914878132526679,9.108210779489815,2,10430.65909090909,28258.698217549085,0.041208629707995485,1.0283015606487844,4.023926134540094,4.172385849229881,1.0050216325963144,7838.499408509443,21236.029989376242,0.07235809078936446,0.07235809078936446,54,1.4028385866666666,75.75328368,2.473858332482826,0.7372891006748938,1.3813330239821715,0.4534646455587372,0.5026210026579181,6677.945257346741,505876.28147929814,0.19821847649774377,1.789047688563502,8.452948946629805,6.256024403182149,0.9726659846519047,5887.931582887102,446030.15148687805,17.48928244144108,3.1699317460696337,4.777777777777778,-0.01854668371614947,3233.1628522009123,244922.7027264136,0.08718658165178202,0.8421995483657634,1.2472853714042291,1.2741037979442018,1.0014789336262258,641.0031698012654,48558.09496173446,-0.01854668371614947,"CurrentSlice","Yes",1743.3399999141693,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",8,3,"D - 8",1,1,,,,1455,0,57,33,126.91540511999999,0.7111049526216565,0.9788814474255357,1.318707164712333,0.3909815499013002,5.161089934163001,2.3633324293004483,19.2438621736906,47.35820689670175,19045.406403940888,2417155.4694311996,0.16354067068026015,7872.869654190217,3153.241964792962,16863.197697154716,20539374.795134444,2.5386848308082857,3114.6985366786143,26597,477.4577733990147,448.50038719211824,7.378578959655761,7.222754051971435,-23.002008040933745,53.96152295166734,4,47.22088132373558,1,50.75470660928967,3,47.22088132373558,1,-0.45242707638771495,-0.14311110014865713,0.9248249438499141,7.0249352948315975,139.67726135253906,359.11627197265625,0.003185680601745844,1574,0.5846970747759818,7730.6986863711,981144.7556414399,0.16831632105926234,3810.892879894816,3045.158891940809,7046.000863067643,8582029.05121639,2.5386848308082857,1301.2027621076556,11819,-0.24161248530272483,0.04853951417036706,1.058290934288896,6.921768923087015,252.4800567626953,65.15509796142578,0.017989251762628555,1354,0.5846970747759818,2.2793978807089132,9.148182700658827,0.9207805198972177,7.023574973841723,122.25337982177734,238.4778594970703,0.006325847469270229,1626,1356,0,183,81,1010.0090491199999,3131.755184153513,11819,2,2.3444963999999997,4.688992799999999,6.604914904339675,0.880160728408207,2.4095968320793855,0.10685144469529867,0.6673297168494893,14839.329545454544,69581.50939546362,0.06819034960629289,4.251565123328028,7.3682076071176414,6.36980229440197,1.0170427990825726,12825.362195902688,60138.03099397988,9.580817624249809,4.952040020199028,1,3169.215909090909,14860.430579372725,0.053298000245072925,1.2734396818266092,1.4522973440786713,1.2098297319628022,1.0051504551370594,987.0072023047373,4628.069665155056,0.09106485084247867,0.09106485084247867,1,0.8335987199999999,0.8335987199999999,1.8288145488861383,0.8696259971736429,0.9572039119652381,0.7692307692307692,0.35636155095632865,6086.875,5074.0112088,0.21566789553361143,1.9400692479694284,8.88987052804213,6.299487021927028,0.9262294607196546,5402.177176696543,4503.247979707452,11.677110568223704,,,0.46546476885332344,3307,2756.7109670399996,0.125445416636005,0.579778884025778,1.5154370843246954,1.2154675700522708,0.9966659688461924,1124.7912932138283,937.6245822901919,0.46546476885332344,"CurrentSlice","Yes",1756.0569999217987,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" +3,"D",8,4,"D - 8",1,1,,,,1559,0,64,40,154.52836272,0.667454620049387,0.7173028427162919,1.4429887748630925,0.2873615659520252,5.957247756158174,6.48551536753213,22.70181509571426,53.938412689844206,20834.093054619014,3219458.288486399,0.17356601726677992,9802.58551712238,2968.615114766798,18240.904618861325,27051261.549771346,6.762594638425141,3616.0905548557034,30553,512.4810238705327,447.0814826702629,9.682708893585204,6.945434614562988,-29.18335098711381,78.26019247856469,2,72.05842697115115,1,87.47979746834662,3,72.05842697115115,1,-0.4557607400675279,0.1292251384163654,0.7506971571266896,7.223299937327365,156.36708068847656,440.45306396484375,0.0026593427173793316,2035,0.17458239046994414,25403.53607552259,3925566.8370489595,0.20286177932999766,5416.417522123021,3756.4777180609644,23861.13997203327,35386070.57852534,6.762594638425141,5153.406529554298,41068,0.1865346881423315,-0.535689047312236,0.7215968433434624,7.254377153774126,137.5993194580078,636.89013671875,0.0018424981972202659,2376,0.17458239046994414,0.37124170105611154,0.3026009748213734,0.9798621281696038,7.213906972871565,79.78063201904297,1614.3316650390625,0.000768108235206455,2334,1302,0,362,147,2639.69454672,8035.374649666443,41068,3,2.5702627199999997,7.710788159999999,5.3437074518705145,0.9512196954501458,1.8948121932844053,0.5353460874372429,0.624871829773551,9363.601449275362,72200.7471900313,0.08447903469379048,0.8130303104605666,1.3050876228446138,2.415072648627325,1.012213642184815,2188.9096620173277,16878.218705192812,71.94302309651356,11.440589723629687,2,2777.8502415458934,21419.414752765213,0.044464885620553535,0.6778380414109142,1.071210330588355,1.0528041420942547,1.0000900895291247,184.66180578820376,1423.888065675901,-0.1310198740009566,-0.1310198740009566,139,1.9730502077697838,274.25397888,2.6731255568931234,0.6833215526812035,1.633473621691565,0.4301060708191477,0.6333616970987949,10722.42988466795,2940669.0591320046,0.1468687365081234,1.6994809692768265,6.951800422998282,6.290975755837033,0.9759896149062649,9180.03378117863,2517660.79074105,43.602694373395686,3.256907159524322,4.446043165467626,0.05763792923485252,3206.8686088062545,879496.4757104855,0.07765450104799232,0.8167102352975005,1.2366508212771885,1.1972772483766376,0.9966983578304682,613.6801730485649,168304.22921833585,0.05763792923485252,"CurrentSlice","Yes",1768.7799999713898,"2023-05-06 DAY3 iSMR IMR90 Phall Mito Dapi" diff --git a/tests/data/in-carta/colas-lab/test-in-carta-3.csv b/tests/data/in-carta/colas-lab/test-in-carta-3.csv new file mode 100644 index 00000000..20db302a --- /dev/null +++ b/tests/data/in-carta/colas-lab/test-in-carta-3.csv @@ -0,0 +1,145 @@ +"OBJECT ID","Row","Column","FOV","WELL LABEL","Z","T","Class Name","Class Color","Ancestry Path","Primary Target Max left border wv1","Primary Target Max top border wv1","Primary Target Max width wv1","Primary Target Max height wv1","Primary Target Area wv1","Primary Target Form Factor wv1","Primary Target Elongation wv1","Primary Target Compactness wv1","Primary Target Chord Ratio wv1","Primary Target Gyration Radius wv1","Primary Target Displacement wv1","Primary Target Diameter wv1","Primary Target Perimeter wv1","Primary Target Intensity wv1","Primary Target Total Intensity wv1","Primary Target Intensity CV wv1","Primary Target Light Flux wv1","Primary Target Global Bckg Intensity wv1","Primary Target Intensity-Bckg wv1","Primary Target Total Intensity-Bckg wv1","Primary Target Intensity/Global Bckg wv1","Primary Target Intensity SD wv1","Primary Target Max Intensity wv1","Primary Target cg X wv1","Primary Target cg Y wv1","Primary Target Major Axis wv1","Primary Target Minor Axis wv1","Primary Target Major Axis Angle wv1","Primary Target Spacing (SOI) wv1","Primary Target Neighbor Count (SOI) wv1","Primary Target Spacing (MIN) wv1","Primary Target Neighbor Count (MIN) wv1","Primary Target Spacing (Gabriel) wv1","Primary Target Neighbor Count (Gabriel) wv1","Primary Target Spacing (Lune) wv1","Primary Target Neighbor Count (Lune) wv1","Primary Target Skewness wv1","Primary Target Kurtosis wv1","Primary Target Energy wv1","Primary Target Entropy wv1","Primary Target Grey Level Non uniformity wv1","Primary Target High Grey Level Run Emphasis wv1","Primary Target Low Grey Level Run Emphasis wv1","Primary Target Run Length Non uniformity wv1","Primary Target Pearson correlation wv1","Primary Target Intensity wv3","Primary Target Total Intensity wv3","Primary Target Intensity CV wv3","Primary Target Light Flux wv3","Primary Target Global Bckg Intensity wv3","Primary Target Intensity-Bckg wv3","Primary Target Total Intensity-Bckg wv3","Primary Target Intensity/Global Bckg wv3","Primary Target Intensity SD wv3","Primary Target Max Intensity wv3","Primary Target Skewness wv3","Primary Target Kurtosis wv3","Primary Target Energy wv3","Primary Target Entropy wv3","Primary Target Grey Level Non uniformity wv3","Primary Target High Grey Level Run Emphasis wv3","Primary Target Low Grey Level Run Emphasis wv3","Primary Target Run Length Non uniformity wv3","Primary Target Pearson correlation wv3","Primary Target Skewness wv2","Primary Target Kurtosis wv2","Primary Target Energy wv2","Primary Target Entropy wv2","Primary Target Grey Level Non uniformity wv2","Primary Target High Grey Level Run Emphasis wv2","Primary Target Low Grey Level Run Emphasis wv2","Primary Target Run Length Non uniformity wv2","Cells Max left border wv3","Cells Max top border wv3","Cells Max width wv3","Cells Max height wv3","Cells Area wv3","Cells Intensity (Cell) wv3","Cells Max Intensity wv3","F Actin Org per Cell wv2","F Actin Area wv2","F Actin Total Area wv2","F Actin Form Factor wv2","F Actin Elongation wv2","F Actin Compactness wv2","F Actin Chord Ratio wv2","F Actin Gyration Radius wv2","F Actin Intensity wv2","F Actin Total Intensity wv2","F Actin Intensity CV wv2","F Actin Organelle/Cyto Intensity wv2","F Actin Organelle/Bckg Intensity wv2","F Actin Intensity/Global Bckg wv2","F Actin Intensity Spreading wv2","F Actin Intensity-Bckg wv2","F Actin Total Intensity-Bckg wv2","F Actin Distance to Nuc wv2","F Actin Spacing wv2","F Actin Neighbor Count wv2","F Actin Intensity wv1","F Actin Total Intensity wv1","F Actin Intensity CV wv1","F Actin Organelle/Cyto Intensity wv1","F Actin Organelle/Bckg Intensity wv1","F Actin Intensity/Global Bckg wv1","F Actin Intensity Spreading wv1","F Actin Intensity-Bckg wv1","F Actin Total Intensity-Bckg wv1","F Actin Pearson correlation wv1","F Actin Pearson correlation wv3","Mitochondria Org per Cell wv3","Mitochondria Area wv3","Mitochondria Total Area wv3","Mitochondria Form Factor wv3","Mitochondria Elongation wv3","Mitochondria Compactness wv3","Mitochondria Chord Ratio wv3","Mitochondria Gyration Radius wv3","Mitochondria Intensity wv3","Mitochondria Total Intensity wv3","Mitochondria Intensity CV wv3","Mitochondria Organelle/Cyto Intensity wv3","Mitochondria Organelle/Bckg Intensity wv3","Mitochondria Intensity/Global Bckg wv3","Mitochondria Intensity Spreading wv3","Mitochondria Intensity-Bckg wv3","Mitochondria Total Intensity-Bckg wv3","Mitochondria Distance to Nuc wv3","Mitochondria Spacing wv3","Mitochondria Neighbor Count wv3","Mitochondria Pearson correlation wv3","Mitochondria Intensity wv1","Mitochondria Total Intensity wv1","Mitochondria Intensity CV wv1","Mitochondria Organelle/Cyto Intensity wv1","Mitochondria Organelle/Bckg Intensity wv1","Mitochondria Intensity/Global Bckg wv1","Mitochondria Intensity Spreading wv1","Mitochondria Intensity-Bckg wv1","Mitochondria Total Intensity-Bckg wv1","Mitochondria Pearson correlation wv1","Slice Algorithm","Slice Indicator","Acquisition Time Stamp","Plate ID" +1,"C",3,1,"C - 3",1,1,,,,701,0,61,46,146.50497503999998,0.5808400970089491,0.43545138902725805,1.5785303756259124,0.24337595140564638,6.066842575455457,3.086627160696914,22.92789115466139,56.29927779331649,20030.519914651493,2934570.8201342397,0.17551256838420856,7937.548788936805,2754.160368520528,17328.003082968324,24363172.334653463,1.539661935329608,3515.6079962915214,28810,234.7215174964438,446.03796870554766,11.124084210205078,4.84399792098999,-38.547834974398256,48.81693059104378,4,37.23314280985584,2,38.558965016451296,3,37.23314280985584,2,-0.4419001612619659,-0.12064829997198245,0.807350736226981,7.156677027097265,145.96835327148438,401.898193359375,0.0029175791423767805,1896,-0.06338546086267591,11792.881223328592,1727715.76927344,0.16116044595638715,1525.6039580027998,7659.396490050911,6422.44310451671,9029955.004950495,1.539661935329608,1900.5459970623401,25164,1.68519882604624,8.224808086080044,0.8812061293906019,7.093424259495128,310.2131652832031,148.62173461914062,0.007507635746151209,1914,-0.06338546086267591,0.9329563444707855,0.44606721397487537,0.7314719076342195,7.228784380178293,73.91094970703125,533.0598754882812,0.003793355543166399,2055,599,0,191,161,1155.15942624,10985.601298935595,56783,1,0.10419983999999999,0.10419983999999999,12.566370614359172,1,3.1415925460576575,0,0.2282540689670175,15979,1665.0092433599998,0,0,2.161859461767817,4.370006184885253,1,8587.677722772278,894.8346446844356,55.7319679016898,,,3132,326.35389888,0,0,1.1589197015469994,1.2892364895554378,1,429.4831683168318,44.752077421306936,0,0,81,2.181764551111111,176.72292864,2.5601245252632663,0.7459772094751811,1.665203225108823,0.44028413486861845,0.6657115707997704,15358.042558153324,2714118.259054613,0.18012641989402786,1.3525098183691304,2.8597373656268905,2.984464514820387,0.9702912993405187,9987.604439341441,1765038.7066182846,21.98459420044032,3.1165093302370988,4.716049382716049,0.03520264134080299,3473.5100266645973,613848.864572572,0.08678898158767671,0.7883029433192239,1.2852871019867962,1.4098588722427015,0.9993029947907397,770.993194981429,136252.17537862866,0.03520264134080299,"CurrentSlice","Yes",0,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",3,2,"C - 3",1,1,,,,102,0,54,33,87.21526607999999,0.5189355303876337,0.49936605389311967,1.7247338783436033,0.2269672209552891,4.8929115546532715,3.4951421360678157,19.064339535373364,45.95623944843789,20768.956989247312,1811370.11002128,0.20069393441722333,4585.370311742849,2733.479011723642,18452.85034345747,15445035.737473903,1.7492231035919124,4168.203691914132,27267,42.412140501792116,448.26237132616484,8.754934723663329,4.371917205047607,35.251542977357666,91.00032354543524,4,77.98214460203023,1,86.08067842696009,3,83.68713863771785,2,-1.0165456791782224,0.4767974775216901,1.2746781544715797,6.687792281753798,87.74430084228516,423.486083984375,0.0030729416757822037,1185,0.3969779868081801,13402.186379928315,1168875.2511792,0.16394252086771796,1100.3852033879543,7661.793599917485,8348.646192036875,6987816.8627348645,1.7492231035919124,2197.1882202644433,23104,0.7565919353937046,0.8880304003626365,1.343193889538361,6.645760493018121,123.92158508300781,196.01742553710938,0.0057531921193003654,1033,0.3969779868081801,2.011910281899439,7.296984094077899,1.3289197780661148,6.6530107028009695,88.9240951538086,441.6138610839844,0.0028444041963666677,1054,91,0,195,105,559.86574032,10694.000372231529,40452,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,3.1028396799999998,55.851114239999994,2.3184355395861598,0.6096465018875673,1.7829375037935082,0.33319438756559205,0.8621117986727234,15532.754022908695,867521.6193952931,0.16438827507118434,2.4734409746283914,3.0736381715388403,3.0366619202866665,0.9651115611669234,10479.213835017254,585275.7690449371,28.470787855467687,4.289064531216787,2.888888888888889,-0.08021506148959133,2918.352498568161,162993.23879011977,0.08694497179421636,1.1003488460458457,1.260025095939804,1.2303107210548647,1.002456349432968,602.245852778321,33636.10192408822,-0.08021506148959133,"CurrentSlice","Yes",13.14300012588501,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",3,3,"C - 3",1,1,,,,157,0,33,43,69.81389279999999,0.5187599879897782,0.7777071109875112,1.7140127865276173,0.21826794834519692,4.364032885642048,2.318917129111335,16.026621777530035,41.12374179322947,21147.12089552239,1476362.83122864,0.16095163942047946,2980.668789968747,2582.8650947191773,18435.47180068008,12351766.106455654,1.6737415463113632,3403.663777157406,27449,54.88419044776119,446.2926805970149,6.889737872314453,5.358198136138916,117.09003839886948,60.77668186630678,3,38.015137466391856,1,76.82747104546291,4,63.10733972304846,2,-0.6198118943281555,-0.11221229241474573,1.6039206950323013,6.458126568215928,73.07572174072266,446.14923095703125,0.0025594637263566256,898,-0.10736256113091994,11903.313432835821,831016.6479647999,0.13396327938573252,714.5201066380062,7111.798986569142,5540.097675122056,3711865.4423317774,1.6737415463113632,1594.606903018928,18181,0.3060919579037421,0.29213401113181936,1.733125417687681,6.39941091111873,144.04595947265625,151.8118133544922,0.007174132391810417,914,-0.10736256113091994,1.0606060459843794,1.844681486445925,1.559367342392515,6.476241271464418,53.58222198486328,443.85888671875,0.0028801467269659042,900,126,0,82,124,400.02318575999993,11291.084657462881,50749,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30,2.0735768159999997,62.20730447999999,1.2510195548118708,0.6992901699940108,1.444289324585356,0.48748980264093916,0.6700589902400103,15637.62463063997,972774.476742168,0.1714869303712967,1.532806204302223,2.4575034426081444,2.832960097364637,0.9607352985378087,9274.408872926204,576935.9766301339,17.368349905109028,3.071200174688543,4.4,0.13520496375436628,3061.781976316523,190465.20365209808,0.09024883731011453,0.8558109029789499,1.1291217518299783,1.2948091661496282,0.9997938814645528,350.1328814742142,21780.82276632619,0.13520496375436628,"CurrentSlice","Yes",26.386000156402588,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",3,4,"C - 3",1,1,,,,23,0,11,8,7.085589119999999,0.994436936676639,0.9199058388645954,1.05999977400373,0.694051717749904,1.093329166458291,0.08881732887647474,3.4766623994860355,9.46246510347228,1667.0294117647059,11811.885462719998,0.032023924414172567,67.83842010771993,2159.424326686048,0,0,0.5705435738091283,53.3848238785555,1812,9.090617647058822,451.7443588235294,1.6093067327499389,1.4804106599807738,-18.55065613822342,11.103694195631133,1,11.103694195631133,1,69.31284977821198,2,11.103694195631133,1,0.22227636884953644,0.27553641832400455,22.49134948096886,3.8779311453901175,19,4,0.25,19,-0.010749630581189992,4262.044117647059,30199.093428959997,0.0222618491911748,67.64288139189475,7470.1465642532985,0,0,0.5705435738091283,94.88098339319248,4495,-0.1407075559988444,0.19115851954921803,17.73356401384083,4.089492788845462,18.266666412353516,22.600000381469727,0.04600000008940697,30,-0.010749630581189992,0.1493107059643846,0.6920219103732443,19.463667820069205,3.995254205583184,19,4,0.25,19,23,0,12,9,9.377985599999999,4267.544444444445,4495,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",39.57299995422363,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",4,1,"C - 4",1,1,,,,1267,0,41,45,120.66341471999999,0.7193895345670843,0.6119556506664836,1.2774501041825137,0.39961479749425033,4.953017378474651,6.339191922042241,18.06815150257491,45.91035806909754,24909.759067357514,3005696.58891984,0.21211367478540216,8786.057664670767,3074.3589827210517,22110.668920951855,25604154.61046225,1.697049256449255,5283.700533796195,36257,415.761103626943,446.3755336787564,8.446506825256346,5.168887580108642,55.19599402663759,63.59500344678682,2,61.589941515891944,1,63.59500344678682,2,63.59500344678682,2,-0.4857933925909433,-0.5782839201702887,0.924707896707145,7.006111987503787,91.61226654052734,617.964111328125,0.0020361337810754776,1728,0.5375893349746634,14007.929188255614,1690244.5690108798,0.15423393240439698,1727.6281168310977,8254.285569509324,8641.324977036664,10006654.323408457,1.697049256449255,2160.4980035469957,26226,0.11669279102971011,1.439251713660374,1.0007725785330552,6.948038734008369,204.68368530273438,203.87322998046875,0.005482755601406097,1625,0.5375893349746634,1.3426712367568021,1.7643229269154785,0.9366396115033663,6.997280114730381,108.069091796875,316.1600036621094,0.004600482061505318,1650,1250,0,175,254,1293.2242142399998,9820.218838127468,61294,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,90,1.8188660959999998,163.69794864,1.903794762965165,0.7114965778189647,1.4345188728976572,0.4493605857371311,0.6050513712875993,15794.50641382585,2585528.2997246142,0.22051075105136614,1.7789245791391795,2.9431099802007465,2.885829090431151,0.957743150295877,10427.9022026069,1707026.1991852869,40.89940336726979,3.108409054479114,4.644444444444445,-0.03791163518620692,3288.7182727005857,538356.4348959699,0.07814500739171079,0.8408341871387244,1.1749240291255585,1.1844301374573816,1.0027575222795366,489.6281262949269,80151.11987092637,-0.03791163518620692,"CurrentSlice","Yes",578.8600001335144,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",4,2,"C - 4",1,1,,,,485,0,37,47,144.42097823999998,0.7953364224238628,0.7643119801115198,1.0669332221069288,0.6887602847111105,4.9521505406797175,0.7438424127754849,15.945143762286998,47.76883365529544,18886.569985569986,2727616.91291424,0.15801314197441846,6166.010917469309,2930.024227401185,16127.718257587823,22353017.50501672,1.5564300587343196,2984.3262645396608,23960,161.95965974025972,445.6975991341991,7.869078721618652,6.014431139373779,81.87478383292921,71.81631936810425,3,63.222634141082686,1,71.81631936810425,3,63.222634141082686,1,-0.8927489522509207,0.18278203643259516,0.8370657721307071,7.1288901609490285,164.32777404785156,350.07794189453125,0.003291408298537135,1681,0.3931111752204495,12330.560606060606,1780791.62497488,0.14617918836281743,2088.200996952822,7922.335177777118,7206.590483429613,9988334.410033444,1.5564300587343196,1802.4713414524695,19198,-0.03259775134895172,0.35339735902168146,0.8912043544078175,7.081860624845571,285.5484313964844,156.5652618408203,0.007066906429827213,1900,0.3931111752204495,0.6187573121003644,1.077862889984404,0.7641869113730585,7.194413849034693,114.09687805175781,314.1668395996094,0.004604075103998184,1858,459,0,100,93,473.48407295999993,9448.880501760563,35687,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,1.5927689828571427,11.14938288,2.077051993689642,0.6766305600725158,1.1657007720770172,0.4525246572757306,0.5017387119482203,15945.27772180201,177780.00644830472,0.23230133566293132,2.030498936365107,3.111899043161209,3.0943033962072994,0.9415853646676958,10821.307599171018,120650.90168541123,10.640745790887767,3.9606359180251793,2.857142857142857,-0.3900498288192344,4170.02750820608,46493.23330912192,0.09259023190528959,0.8451915667375507,1.5115083807914744,1.6030602635730007,1.002378612786072,1411.1757802239172,15733.739084699184,-0.3900498288192344,"CurrentSlice","Yes",592.039999961853,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",4,3,"C - 4",1,1,,,,628,0,78,39,223.50865679999998,0.6652193383962143,0.7219969699201514,1.4601600653880746,0.29505573694716924,7.207048684262572,6.642517760799071,26.618769918987617,64.97849875876771,14403.613053613053,3219332.20668,0.16997738075549124,10057.640077041966,2898.8377054121265,11705.831101564723,25109007.71285633,1.6901832270454917,2448.2884202687496,24998,216.29752,447.58168839160834,11.686869923400877,8.437884672546387,15.871986543034941,31.89887986549521,2,29.223319744020547,1,65.45137080558209,3,31.89887986549521,2,0.37303802831140564,0.6917447912857329,0.5883471617737351,7.49773644212658,272.8626403808594,223.4733123779297,0.005102834198623896,2417,-0.016327218340581016,13067.287179487179,2920651.8055070397,0.21317719277197675,2788.31970123597,7731.284378161368,7768.436005866891,16663295.23258448,1.6901832270454917,2785.6475980683185,35326,2.600304726526851,10.274218562459362,0.6322504224602127,7.445532643877687,362.0860900878906,199.1994171142578,0.005878999829292297,2718,-0.016327218340581016,1.7638098038118408,1.893134253350743,1.7246157106296967,7.369158030228981,130.6688995361328,787.7072143554688,0.003806638065725565,2531,584,0,435,235,3011.16697632,10276.193438992317,65535,2,0.15629975999999998,0.31259951999999996,9.42477796076938,0.5,1.9634953547275529,0,0.19482703448350874,9819.25,3069.4928367599996,0.09863454426290665,0.5230192321972228,1.3960151496356765,2.671045271229037,1,2785.479626832798,870.7395943177116,27.56289527523469,33.03657328053259,1,2919.5,912.6342986399999,0.011996821636897513,0.514549811708319,1.0821853107080532,1.1480382003444736,1,221.71804795167054,69.30895536502919,-0.5,-0.5,198,2.323972189090909,460.14649344,2.1363607852686832,0.6543231984568291,1.6694332279709916,0.4110569037770775,0.7274084243102503,14662.841678917575,6747055.182419804,0.2215326014556132,1.415382854968399,2.7671737134107146,2.7783808243300157,0.9599303818054583,9363.990505297286,4308807.395618,55.000643690163464,3.1499687774098684,4.888888888888889,0.0473582674801755,3061.4525695971906,1408716.6647330248,0.08018460344738249,0.7580485795062896,1.1348035623385868,1.1855333108349622,0.9987637130244497,363.6706175488612,167341.75943226778,0.0473582674801755,"CurrentSlice","Yes",605.3259999752045,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",4,4,"C - 4",1,1,,,,23,0,10,8,6.460390079999999,1.044335913627004,0.8483707346092458,1.0470833826702293,0.7313565017507029,1.0376002196094678,0.12360585741619903,3.1792112984197822,8.81686510347228,2009.758064516129,12983.8210632,0.03355918061485305,62.152602546798896,2483.227194169091,63.19442815249272,3918.0545454545486,0.6940374210103499,67.44583387925427,2136,9.00716129032258,451.8210774193548,1.5824517808914182,1.342505779838562,-13.163242221875265,11.273070893806974,1,11.273070893806974,1,38.546237469556594,2,38.546237469556594,2,-0.18137523082380055,-0.926724251474822,19.771071800208116,3.970617279757362,29.310344696044922,6.241379261016846,0.18773946166038513,58,0.5503302707712935,5191.080645161291,33536.405904479994,0.08798755765969,65.27869380547867,7479.539990227527,595.5079178885635,36921.490909090935,0.6940374210103499,456.75050758222983,6253,0.44110704182732746,-0.6207907605774543,16.129032258064516,4.127134385045092,15.411765098571777,32.235294342041016,0.03237695246934891,34,0.5503302707712935,-0.417668697393313,-0.8187076142249294,16.129032258064516,4.127134385045092,11.297872543334961,36.25531768798828,0.03225680813193321,47,23,0,10,9,8.231787359999998,5134.974683544304,6400,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",618.4930000305176,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",3,1,"C - 3",1,1,,,,1139,0,24,6,11.04518304,0.5176325564537612,0.27054348461697403,2.0798699559327267,0.13063563280933632,1.9121176634057,27.722820952386574,7.431414078087695,16.374973241406316,8647.867924528302,95517.28413215998,0.18106744227523594,314.8748114280445,2754.160368520528,6096.231482262193,646200.5371197924,1.2832172644525712,1565.8473262283928,11622,371.3296301886792,452.19407547169806,3.6903943393707275,0.9984121441841125,-1.6396050947594434,84.09084333090634,6,72.9060588605164,1,88.16573719014858,3,85.35043403920724,2,0.20130277360294818,-0.9218075005614024,9.789960840156638,4.637282596732446,22.302326202392578,82.9534912109375,0.013680623844265938,129,0.06949594560243276,9828.669811320755,108559.45710575998,0.13472800079171518,116.24517597978267,7659.396490050911,4632.665774993812,491062.5721493441,1.2832172644525712,1324.1970341211297,12989,0.3487412850189029,-0.5236276796647439,9.967960128159488,4.624204348042635,16.658536911010742,104.8536605834961,0.010254005901515484,82,0.06949594560243276,0.15654938470189042,-0.6742594396935044,9.611961552153792,4.650360845422257,22.50494956970215,252.7227783203125,0.004049657378345728,101,837,0,347,156,1411.4910326399997,8969.206333973128,32916,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,80,2.100929274,168.07434192,2.1754939056460225,0.6906375081139423,1.429517372045664,0.44351681556028966,0.6345850728651069,12676.91694364824,2130664.4728781753,0.16398401761153297,1.6238299957881686,2.4397434749895917,2.463452528692087,0.967210605799794,7480.912907321298,1257349.513858861,60.97577754187847,3.1942307107398005,3.875,0.0665074780222764,2939.354348586636,494030.04780838906,0.07722337897445437,0.9618177117948947,1.1519487258836116,1.1930510564840204,0.9991080198362763,387.71790632052716,65165.4319554228,0.0665074780222764,"CurrentSlice","Yes",0,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",3,2,"C - 3",1,1,,,,948,0,66,18,72.62728847999999,0.2548222697808625,0.30796228281727117,2.6480216075659704,0.1418755394712281,5.532491091741117,4.360923738534189,21.07120115797863,59.84614179322947,18481.932568149212,1342292.6482948798,0.25375691586871935,3418.35214151539,2733.479011723642,15845.614573546172,11044393.357761683,1.5671405719081926,4689.918207787184,24473,315.36726370157817,450.90204533715917,10.57482894744873,3.2566484630584713,-3.8852426074330717,75.54972921881476,3,62.45468542165237,1,69.10257168349688,2,69.10257168349688,2,-0.8339871281148814,-0.575489399730174,1.512940270764848,6.508995464044199,54.732574462890625,343.5690002441406,0.004118077922612429,703,-0.10018591955802218,12007.107604017217,872043.66776736,0.11115433450527751,936.230261929874,7661.793599917485,6727.606349460573,4689141.62557402,1.5671405719081926,1334.642055057791,17464,-0.9201345378007163,2.208345883347471,1.7352498615711112,6.4105232661836355,90.11538696289062,142.36154174804688,0.0077505456283688545,520,-0.10018591955802218,-0.18167261782188882,-0.9326293135554344,1.591160311974459,6.472443747194957,82.5372543334961,192.52549743652344,0.005525081418454647,510,544,0,621,50,1293.32841408,9111.282226877216,41490,2,17.870272559999997,35.74054511999999,0.26897132852091593,0.38381649347811087,6.27738416886622,0.02206536936074155,3.9517950805627633,16827.85680636777,601436.7754608864,0.1814073107640939,3.3020934669005637,4.866599336876902,5.0526686781098125,1.009848521219391,13370.0301718935,477852.166614321,123.86118945517538,20.261063405241224,1,2793.064814814815,99825.65903697332,0.06458830840004358,1.0539304170011,1.0594567197631928,1.1913853079820378,1.003707006131219,156.74682021177523,5602.21680019548,0.2051035259406046,0.2051035259406046,16,1.2048106499999998,19.276970399999996,2.909873782282463,0.6605382893100653,1.2761613362129964,0.4595365948905291,0.4463122179888968,14025.807254125508,270375.07127388264,0.19731702768393564,2.112325172083716,2.6566538348712543,2.7420530014874736,0.9702224152585919,8746.305999568864,168602.28186303139,64.94982923137762,3.1013562021843524,3,-0.08698757483799716,2801.2772655191557,54000.1389296057,0.07784024790484256,1.0000797542179598,1.0625718412019391,1.180954478290888,0.9991538904118952,164.9592709161161,3179.914982655551,-0.08698757483799716,"CurrentSlice","Yes",13.14300012588501,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",3,3,"C - 3",1,1,,,,429,0,28,9,18.860171039999997,0.5955602259297345,0.32787339980397306,1.7904235535877087,0.19248391023395273,2.3182527376284234,4.818324413475593,8.721575729190224,19.94871393107649,14729.314917127072,277797.39863903995,0.22576934194256842,746.8404029145972,2582.8650947191773,12195.367037085707,2207361.433712513,1.285206048298697,3325.427736104636,21822,142.90766187845304,451.8629303867403,4.40536283340454,1.4444012895584106,0.9063343281384497,84.33365113741145,4,73.0891855883126,1,78.83093547062816,3,80.64436378400885,2,0.10721226320595198,-0.6414049443838032,5.524861878453039,5.198497031265826,22.007633209228516,230.0992431640625,0.005340063013136387,262,0.2626310149573532,9140.127071823204,172384.35990192,0.05486284402771719,164.00798405405962,7111.798986569142,3230.3253138087266,584688.8817993795,1.285206048298697,501.45336593495193,10275,-0.33819192527739794,-0.874136569901518,6.074295656420745,5.129565267453235,35.593406677246094,86.71428680419922,0.011801752261817455,91,0.2626310149573532,0.23104872840130194,-0.6811443847803265,5.830102866212875,5.160201606925497,35.016666412353516,266.0333251953125,0.0038088695146143436,120,420,0,55,103,252.78881183999997,10016.436933223413,28657,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,1.6411474799999999,39.38753952,3.3032812434352827,0.7667696262445828,1.5435183035367552,0.43834217645102563,0.5383805299314791,13562.29401659373,534185.391560445,0.17241909105162548,1.523354966886026,2.2948813804458763,2.4569868304969544,0.9628305527230596,7652.492258579253,301412.84126128437,17.23139620270835,2.8542852570259343,4.416666666666667,0.06848085199874722,2866.652179632638,112910.37601537464,0.06631111709073488,0.8032980734199383,1.13129879355918,1.2122899497947244,1.0008532549397322,332.70429959127296,13104.403748625182,0.06848085199874722,"CurrentSlice","Yes",26.386000156402588,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",3,4,"C - 3",1,1,,,,735,0,33,48,114.72402383999999,0.7134714893389932,0.707566960717865,1.246198129681017,0.479314506717171,4.77013633874781,7.634551950810281,16.61714704755302,44.951460413889116,17322.964577656676,1987360.2011865599,0.20951855837704236,8192.905993913742,2159.424326686048,15392.177364381907,16946787.27818448,1.509474825758884,3629.482565127197,25094,241.61682615803812,446.4461798365122,7.788615147399902,5.510966748046875,102.56344719747892,81.58524007759684,3,59.359827392280884,1,85.4189489930529,3,70.6958389960523,2,-0.4503961410280592,-0.6959006794362375,0.9907597832372683,6.941801864389674,106.87835693359375,306.0509338378906,0.004059617407619953,1414,-0.12560639687542716,11275.998183469574,1293627.8844201597,0.16153185667398526,1424.436143825887,7470.1465642532985,5959.581028759959,6561498.712664715,1.509474825758884,1821.4329224283254,23683,2.1505134345275416,8.90444539594551,1.1260508777009752,6.846392531566534,240.0835723876953,142.02786254882812,0.007810065057128668,1364,-0.12560639687542716,1.8210844089443177,3.1879090520391253,0.9759107606741787,6.953133970883843,73.36479187011719,496.90985107421875,0.003431568155065179,1420,555,0,225,347,1538.82323712,8906.523496749729,37270,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,77,2.3681781818181813,182.34972,1.9489558208102622,0.681564988144509,1.624198963958715,0.40560661782105084,0.7300824112260558,13503.41380871711,2462343.727063698,0.18236512681069542,1.69967503266082,2.5399462487165705,2.527395369135292,0.9583760124618262,8186.996654007496,1492896.5474992036,50.56389169281003,3.520781455181241,3.5324675324675323,0.05094110954123015,2472.888091041916,450930.4509928279,0.09600931611375106,0.9685052678261041,1.280766763960334,1.2863406795701524,0.9981887450928179,542.100877767148,98851.94327259365,0.05094110954123015,"CurrentSlice","Yes",39.57299995422363,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",4,1,"C - 4",1,1,,,,761,10,30,80,170.26253855999997,0.5780780775088565,0.472176393260152,1.8578924014783884,0.15922550324687879,7.095449222191815,4.154665828668853,26.084956492200632,60.83748248289965,20583.253977968176,3504557.0741140796,0.2034905134304405,9455.366687161108,3074.3589827210517,17533.238080333434,28649311.023264833,1.5979531278916634,4188.496920045901,32446,250.42227392900855,436.689529498164,12.832994384765623,6.0594370033264155,100.22427159754868,33.58684416209567,1,33.58684416209567,1,69.09484812263719,2,69.09484812263719,2,-0.16966614751932746,-0.2874719005857447,0.6749174892769768,7.33185793605333,165.43968200683594,433.1416931152344,0.002793180523440242,2470,0.35277806507414394,13189.961444308445,2245756.31901648,0.17461755119354103,2234.8110313753937,8254.285569509324,7438.400374126203,12154346.211322216,1.5979531278916634,2303.198767742362,23132,0.2435839184520022,0.40474726811642725,0.733345418426371,7.267266858014599,326.7977600097656,184.96006774902344,0.006161509081721306,2680,0.35277806507414394,0.6893812695054613,0.2729663326452143,0.6591868929675245,7.3463930977480745,133.31410217285156,347.686279296875,0.004368668422102928,2566,709,0,94,323,1199.5485580799998,10147.263377345378,43387,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,74,1.6545244864864863,122.43481199999998,2.0526863801441695,0.6773305361540355,1.5996357746943908,0.4359088263280139,0.6139801495610209,16483.284064792573,2018127.7856154742,0.23143439338492627,1.8171969358015758,2.8658800391161092,3.011676301475281,0.9614535398784823,10731.722994610333,1313936.487281193,46.34914232860307,2.971603934505882,3.6486486486486487,0.10061484465224013,3640.6721640478127,445745.0119588271,0.09651672579385318,0.8698649233792277,1.1936567828617284,1.3111861443088717,1.0021097108175923,590.6562664130706,72316.88893490621,0.10061484465224013,"CurrentSlice","Yes",578.8600001335144,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",4,2,"C - 4",1,1,,,,1171,11,34,78,226.73885183999997,0.7205116162124692,0.4302934336389621,1.4348376471010968,0.2935911740896867,7.195722522913189,1.6183194019933282,25.155628163892068,62.88504993116351,16135.045955882353,3658441.7944223997,0.18947308887734515,10782.608675568947,2930.024227401185,13368.579780266924,29090029.601860825,1.8756531976210689,3057.1569964389455,24437,383.40050790441177,437.5101545955882,13.22176333465576,5.689237944030761,86.73136683228917,54.62143460063303,3,48.534233136667254,1,77.05917577110455,3,48.534233136667254,1,-0.24563459450575326,-0.6575338104185557,0.5541738754325259,7.548967069674823,250.82252502441406,268.76849365234375,0.004384844563901424,2851,0.02434833349727998,14859.55330882353,3369238.0560979196,0.21529483366760133,3496.5890796276235,7922.335177777118,9706.021810471135,21120303.45958519,1.8756531976210689,3199.185057998017,31683,0.6391144964097134,1.6816834420863316,0.5643112024221453,7.539314051497558,347.84100341796875,238.86541748046875,0.005043341778218746,3522,0.02434833349727998,1.6385853590994395,3.087866217213083,0.5148917333477508,7.60575183447714,156.23451232910156,347.5267333984375,0.006728884764015675,3292,1062,0,233,249,2687.52227328,9720.889810794044,54052,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,95,2.159678789052631,205.16948495999998,2.131282934241267,0.6939941498131218,1.7011350715954758,0.41414344145924725,0.7021051673659212,17758.434457425865,3643488.851325982,0.18506841524999634,1.5262316553707598,3.445876766854595,3.4461603624378627,0.9662356241346263,12604.902959073472,2586141.448083884,21.120485563929172,3.2034490155620676,4.252631578947368,0.15252274406033384,3412.1446421248093,700067.9588337705,0.08321706308985485,0.7520345684008299,1.233394672308163,1.311711608278312,1.0007773639859467,645.6784665093801,132473.51842349212,0.15252274406033384,"CurrentSlice","Yes",592.039999961853,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",4,3,"C - 4",1,1,,,,542,1,77,34,164.42734751999998,0.570921440766639,0.5995586257381958,1.8233136453673322,0.1684935613067019,6.907609783769547,3.9938348402404866,25.28783142303823,60.15943944843789,21343.56527249683,3509465.8243766394,0.21108356734989991,9283.08021046235,2898.8377054121265,18662.380189623902,29449235.939226516,1.8438493696981395,4505.27589768407,30342,187.08141977186312,446.9321467680608,11.848928713989256,7.104127416229248,13.871056231273696,40.32280346365836,3,29.223319744020547,1,55.46681460077985,4,29.223319744020547,1,-0.5422264848263427,-0.4035588622616233,0.704393907996678,7.288792006533114,151.0797882080078,468.1170959472656,0.0026602770667523146,2306,-0.47592703808289677,14255.32382762991,2343965.08501584,0.2359631650905534,2305.5957365439676,7731.284378161368,9321.282391165823,14708983.61325967,1.8438493696981395,3363.7313297583364,24632,0.5861123207976203,-0.3034801335664219,0.7357181524799966,7.256170750873032,248.48333740234375,206.9691619873047,0.005808696150779724,2400,-0.47592703808289677,-0.3658930979914458,-1.0919482001945797,0.6602186914176389,7.334922554690384,59.9060173034668,1134.2093505859375,0.004121154081076384,2426,327,0,292,40,555.2809473599999,11088.78063426534,24632,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,0.36469944,1.45879776,5.89784032635098,0.6371015224231682,1.4711904298685967,0.33687021083023144,0.24670560591195329,14519.508928571428,21181.0271013,0.10766749659489189,1.4000282708543685,2.942721319944291,2.751221493704984,0.9911753700785617,9585.467492107338,13983.258506039003,6.5896968992330365,6.196458342141769,2.5,0.06302576257322762,7929.348214285714,11567.31541326,0.11617140173251814,0.5990896874430645,2.957404270573259,3.0706033255587246,1.0058400038152973,5248.163131412786,7656.008620219557,0.06302576257322762,"CurrentSlice","Yes",605.3259999752045,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",4,4,"C - 4",1,1,,,,895,0,31,37,95.96805263999998,0.8403569364390162,0.812613705723172,1.0657806477751262,0.7509837116493557,4.034663543554597,3.63422214445582,13.072403665737987,37.882303448350875,18678.921824104236,1792579.7528740799,0.15666621968459493,6251.028297855852,2483.227194169091,16432.276566000994,15134126.717286915,1.5190801365585909,2926.356069966489,26767,293.4223960912052,447.73236221498365,6.261184540557861,5.08792437171936,98.72858665209864,94.59362880445615,5,69.3287030832107,1,91.12110948309399,3,69.3287030832107,1,-0.5483123101917164,0.04852659435727702,1.191878251581803,6.760537009547024,113.1634750366211,353.2521667480469,0.0032122540287673473,1150,0.240415062891085,11362.020629750272,1090390.9938926399,0.11923203457178941,1057.9214089481434,7479.539990227527,5721.534135152433,5269532.938475391,1.5190801365585909,1354.7168365317689,17747,0.5371440225939216,1.775132569117452,1.3309896597782942,6.676415254694367,208.39682006835938,137.59170532226562,0.007830978371202946,1134,0.240415062891085,1.9445429871511433,4.63416718326218,1.196593892537616,6.75752659833938,109.23992919921875,301.2417297363281,0.004037374630570412,1117,847,0,113,219,985.1052873599999,10034.749418235668,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,58,2.3804273793103445,138.064788,2.3450126866198984,0.6616703767932504,1.7735517497329745,0.38212881588525927,0.7390052046496713,15144.609009493302,2090937.2322385826,0.20279052323564498,1.494895559602791,2.6849827623907996,2.7946979923840143,0.972722606838124,9504.122514895464,1312184.6601450688,21.7376054046384,3.2882830302366455,4.379310344827586,0.030601602501061358,2834.8179461861573,391388.5387587872,0.09191774348404601,0.8044276835224984,1.261800427086334,1.2757889617194047,1.0025260418831596,588.172688082916,81205.93748755792,0.030601602501061358,"CurrentSlice","Yes",618.4930000305176,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",3,1,"C - 3",1,1,,,,827,11,74,61,271.4405832,0.7157117231051894,0.5300345863225066,1.3243922621800976,0.35149832324667585,7.564073832016982,3.925141898308557,27.75516919638574,69.03562427612911,26567.386180422265,7211466.798913439,0.23020078878510983,20781.479884216078,2754.160368520528,23894.413418994587,62244946.9564809,1.5881782795702104,6115.833254691832,46634,278.29511170825333,440.26376015355083,13.366515019226073,7.084715258789062,-37.48882563455096,67.72859705702223,5,43.95451736667569,1,62.51026026137294,4,53.145157060357,2,-0.09751867849223425,-0.11417519115201413,0.43162234150331014,7.781627371936957,187.51953125,724.991943359375,0.001807476277463138,4096,0.16527691418990131,12164.487140115163,3301935.4836417595,0.21359554565785055,3149.922255180205,7659.396490050911,6885.092337359997,17935665.538822792,1.5881782795702104,2598.280268340804,27568,1.199472378505835,3.302927651251445,0.5005876046728387,7.671943239092424,495.8692321777344,162.000244140625,0.0073067196644842625,4137,0.16527691418990131,0.6205114527016977,-0.635816289206883,2.798250816936277,7.592718582635305,93.59944152832031,1021.3090209960938,0.0033113432582467794,4314,658,0,285,245,2130.9909278399996,10328.139699770183,43996,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,117,2.2487572307692307,263.10459599999996,2.035043193528014,0.7065231862559919,1.6503730214248242,0.44317171871906114,0.7066222763978722,15401.516917579915,4052209.8863870283,0.1570229786625723,1.2947676301898472,2.9172883432665997,2.9929127062172998,0.9751334181376468,10122.12211482475,2663176.849683631,34.9304660006797,3.0660414067004305,3.9316239316239314,0.1258563433414687,3449.1977738882224,907499.78682296,0.09763011961942597,0.7502842803293178,1.290397651506913,1.3999908007479165,1.004463712244606,776.2250124605457,204228.36830852684,0.1258563433414687,"CurrentSlice","Yes",0,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",3,2,"C - 3",1,1,,,,1223,0,72,51,223.50865679999998,0.5882225951520815,0.6649920272961217,1.4558743955040474,0.29658323586185065,7.196464530712742,1.164783069605596,25.799778640910855,69.10051034505263,15788.820512820514,3528938.0652767997,0.2032199815880539,10890.960212370002,2733.479011723642,13187.18708173547,28286516.290322583,1.372922942555579,3208.6038139124726,22849,406.28194909090905,445.2692665734266,11.986093840026854,7.970656842041015,30.839339195225605,46.17799928349643,2,27.893750775941538,1,50.43928074139093,3,43.427797216560734,2,-0.593099056567979,-0.2532882607915785,0.5513988730771948,7.550744945473243,247.4871368408203,261.4916687011719,0.004664250649511814,2644,0.01513614517007247,10519.052214452215,2351099.23126128,0.1326087079265079,2736.617095201643,7661.793599917485,5192.130136530137,11137119.142857144,1.372922942555579,1394.9179227699797,19529,0.9062186891538029,3.2598565950869096,0.6913676843746774,7.37318302772744,557.0991821289062,118.77945709228516,0.009136892855167389,2843,0.01513614517007247,-0.07086266426403254,-0.050415076318131025,0.5418357865910313,7.56085429917996,212.2321319580078,232.0442352294922,0.005864590406417847,2826,1152,0,233,129,1156.6182239999998,8684.433153153153,44574,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44,1.840074447272727,80.96327568,1.7417065101701232,0.7509609243045613,1.4189917993554484,0.5337180674906847,0.5963856548446964,12784.1929065137,1035050.1346363691,0.18512836089185278,1.6217555394517233,2.399921140108088,2.499316716375794,0.9593500919710111,7457.2708285916215,603765.0739156854,22.034046245296064,3.4158545468026533,4.045454545454546,0.07516686549949435,3052.1014898687135,247108.13432757938,0.09154100205782859,0.8507209873565944,1.173148166610004,1.2866962392566854,1.001038013045491,450.4680587836697,36471.36962833669,0.07516686549949435,"CurrentSlice","Yes",13.14300012588501,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",3,3,"C - 3",1,1,,,,723,1,59,95,423.88494911999993,0.7874312056501558,0.778446467951476,1.187180866470155,0.46428635648309735,8.949371014657268,1.5174201324834824,31.316591354743572,82.24748358645894,19033.453294001967,8067994.381105919,0.15526846088771412,24015.71123660492,2582.8650947191773,16401.681475910613,66722040.244004376,1.7351792549491725,2955.294998337878,33524,242.71504985250735,437.4562112094395,14.12420546722412,10.994937858581542,105.68474609582485,79.89329653656634,3,59.3989825362473,1,69.41904573596882,2,69.41904573596882,2,-0.1724882675829572,1.8373267897844956,0.3544705590023678,8.032653211032262,584.0342407226562,371.6641540527344,0.0030365779530256987,5550,-0.2322451018511177,12340.246066863323,5230844.57618064,0.20359274316903186,3983.4176635123727,7111.798986569142,6279.227358534136,25543896.894516867,1.7351792549491725,2512.38454813356,41184,3.0776857127957364,22.82592209285526,0.3965284364428124,7.938099525820264,938.4760131835938,164.9622039794922,0.006966220680624247,6428,-0.2322451018511177,2.005120299291235,6.070272321520873,0.29488856596173796,8.179943596169458,304.7463684082031,410.41949462890625,0.004309546202421188,6143,708,0,179,199,1949.7874060799998,12545.308999572468,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,106,2.543065906415094,269.56498608,1.9578316916151952,0.6960923138522651,1.6512464653454402,0.4147764154130067,0.7617451485819857,17400.57213899059,4690584.986431033,0.21451333035036577,1.5727464469741865,2.8708989323986636,3.1523410815532387,0.9499667737014809,11339.553430661403,3056746.562689657,25.36220117628603,3.630165915657437,4.849056603773585,0.07701005732289817,3078.9838959349036,829986.2510482364,0.0870549673098251,0.802899156723532,1.1699281353988675,1.3020837544023305,0.9972059012908918,447.212077843551,120552.71753870469,0.07701005732289817,"CurrentSlice","Yes",26.386000156402588,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",3,4,"C - 3",1,1,,,,908,0,48,78,296.34434495999994,0.7616961446953344,0.7557025315741357,1.2212203079420672,0.43370077470710144,7.589364157923126,5.070742838650149,26.916565299458245,69.92176386224,19002.472925457103,5631275.391714719,0.21174350573399772,21563.287003911642,2159.424326686048,17043.53727585766,48471820.012539186,1.8130157895020975,4023.6502348516624,30661,300.7323523206751,441.06624725738396,12.110308497619627,9.151790789794921,105.29281041994244,72.40549127900474,4,59.359827392280884,1,62.493521632338116,3,62.493521632338116,3,0.1027381395734541,-0.29092779154526616,0.4211002114650034,7.824078196122524,258.66156005859375,380.3483581542969,0.003219875041395426,3841,0.08431912948978532,13543.493670886075,4013537.7603686396,0.39644289354910056,3330.2888392913133,7470.1465642532985,8343.351821356295,23728492.5799373,1.8130157895020975,5369.221819650005,65535,4.267400338146423,30.6178821906609,0.44088178334826844,7.78774922882169,334.1400451660156,229.99256896972656,0.006584616377949715,4170,0.08431912948978532,0.7138646017501044,0.5539447718611887,0.4168966274398096,7.834553504747944,237.95596313476562,244.00669860839844,0.006562455557286739,3883,857,0,116,457,1521.1092643199997,11951.155021235785,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,39,4.662274892307692,181.82872079999999,1.8563242658330659,0.5385105729751809,3.204373979953048,0.2473833473939562,1.4680936542331444,21049.354238287597,3827377.1548138917,0.16857195398526573,2.0881670728998345,4.0478423180304155,3.9397474726571136,0.9850237489260875,15849.212388757816,2881842.014335346,46.06245521462308,5.108629695215124,2.871794871794872,0.0586266139436932,2593.291317936903,471534.8430022131,0.10991446431854894,0.7848170622361684,1.3238267007224924,1.3489717259436582,1.0163587933466822,634.3556683374602,115344.07970602944,0.0586266139436932,"CurrentSlice","Yes",39.57299995422363,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",4,1,"C - 4",1,1,,,,1081,12,38,82,214.86007007999999,0.6312131384772564,0.638967780156212,1.6360501677654702,0.21189579964571115,7.479735175150352,4.426220320371672,27.09405604187014,65.40256386224,16425.001454898156,3529076.96366352,0.156842823868505,10191.137862043772,3074.3589827210517,13559.885228133586,27960483.340411454,1.4667498198379707,2576.14361023053,24569,355.0237996120271,436.1627575169738,12.604398976135252,8.053804833984374,75.55020287492364,84.54199795739244,2,61.589941515891944,1,92.03338625357519,4,83.09639679953531,2,-0.15736715239570181,0.11134836154294314,0.603032472498991,7.471053895278173,311.3057556152344,277.1605224609375,0.004051558673381805,2878,0.06174776464860754,12106.971871968963,2601304.82486784,0.1754711388934369,2372.7746570111835,8254.285569509324,6665.4623793447645,13744183.426208904,1.4667498198379707,2124.4241429251997,24995,1.0272421419650741,3.648591691758976,0.6274924479825694,7.441294510200762,479.5795593261719,157.6232147216797,0.0071766977198421955,3299,0.06174776464860754,0.6110381862927207,0.19025738111272128,0.5244783204651912,7.576213629813567,143.0576934814453,574.0259399414062,0.0025762394070625305,3432,1062,0,164,388,2335.1184144,10667.164123159304,61088,3,1.5977308799999999,4.793192639999999,1.5718415483743822,0.8092329097164358,1.3462230280207705,0.5111192613729614,0.5700430730736096,10450.057692307693,50089.13961834461,0.20572131266469773,1.797057378896682,1.5320506207121798,2.8826037599123593,0.9989266139783542,3629.0965889141626,17394.95905983247,52.09645199809431,4.167460010765777,2,3074.5192307692305,14736.762948461535,0.08316351803869586,1.0536886706881547,1.0730870887709603,1.1264018719414404,0.9999621130511099,209.40300400466094,1003.7089375890313,0.17605315152835666,0.17605315152835666,177,2.2076237288135587,390.7494,1.7682756928174062,0.6981632104582618,1.655089622888136,0.44688032104194614,0.7241136787388229,15479.768024412957,6048710.067678547,0.20452091702686484,1.5676317754524258,2.844756229019781,2.828322943911238,0.9654101127461032,10038.258531788759,3922443.498341338,44.26730939612408,3.12069157674571,4.6892655367231635,0.11007104096336315,3391.0407638466427,1325047.143848617,0.07608172825467577,0.8041914698827646,1.1835613271703023,1.221281528243612,0.999746399563148,525.9245370820731,205504.6973100978,0.11007104096336315,"CurrentSlice","Yes",578.8600001335144,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",4,2,"C - 4",1,1,,,,88,12,51,33,123.78940991999998,0.7947746208004572,0.9889367044666308,1.199696887931805,0.46282929215602775,4.861693479354604,3.592034224747714,17.181331343059533,44.240974344965615,25065.781986531987,3102878.3612961597,0.20890285662118455,8760.176156025274,2930.024227401185,22408.551602151267,26621359.303355705,1.7038293553801207,5236.313460430362,34965,36.195987878787875,443.7701151515151,6.913621186065673,6.837133751678467,22.20334208372335,41.329400986260985,3,34.29879644993713,1,42.267207767736735,3,39.171821883328946,2,-0.5029941746539408,-0.4586350231140859,0.8941831332403722,7.036850665443267,99.26564025878906,632.8237915039062,0.001978184562176466,1822,0.2980666721758136,13498.30723905724,1670947.4880417597,0.2017493622862908,2154.3852959829187,7922.335177777118,8508.713096287258,10108351.158389263,1.7038293553801207,2723.274877424221,24602,0.340246010800886,1.1233457931063535,0.9494496026482558,6.992793941833027,213.55857849121094,196.8467559814453,0.006058977916836739,1912,0.2980666721758136,0.9433527572307279,0.8667672355314613,0.9055198449137842,7.028241819760099,102.85324096679688,173.92601013183594,0.01155038457363844,1649,54,0,258,64,892.6800292799999,8283.05894712268,64410,1,0.8335987199999999,0.8335987199999999,1.8288145488861383,0.7905694588834643,0.9572039119652381,0.7692307692307692,0.35636155095632865,7014,5846.861422079999,0.16880832581884372,1.9292193346550206,2.2190606079335806,2.5672148783189477,0.9895045074685791,3853.2030506406345,3212.0251309141277,53.91100194412094,,,2744.25,2287.6032873599997,0.0850588769154435,1.0068663747012767,1.0327482389674543,1.0647384699851823,0.9840739261345982,87.0196156192801,72.53944019512389,-0.14622634904673393,-0.14622634904673393,6,1.5629975999999999,9.377985599999999,1.8774868637927389,0.7292924252015318,1.141290872943468,0.5737994352908015,0.5056682623640248,14715.97619047619,138006.21280422856,0.16874508939194874,2.254683906755291,2.9493333063571763,2.8557480088562643,0.9794345901251652,9726.382047706209,91213.87078348732,35.52017376949582,4.464628529270081,1.3333333333333333,-0.15937610218378223,5818.377588383838,54564.661239226356,0.14776087786026534,1.1634216601947562,2.189639868106445,2.236726230713606,0.9930589197848434,3161.147204003118,29645.1929586215,-0.15937610218378223,"CurrentSlice","Yes",592.039999961853,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",4,3,"C - 4",1,1,,,,1468,11,48,84,334.89828575999996,0.7623798778684365,0.5535946366082086,1.2467351336834558,0.4258974526128094,8.151801878464118,0.9526253607457841,27.22641477976856,74.29775337951439,19522.479153702552,6538044.8023603195,0.15615687987162827,22089.168689119982,2898.8377054121265,17360.615924791437,55797019.582279675,1.2966054327288483,3048.5694320010966,35494,481.33155942750466,435.9135793403858,14.263269387817381,7.896069433593749,84.39733506901622,57.40249670524265,4,43.05653238182545,1,45.36288667817201,2,43.05653238182545,1,0.036561808565980035,1.494092121016826,0.41936936605524444,7.852817515620843,467.32012939453125,391.5122985839844,0.0028714891523122787,4798,-0.019712467233400192,10024.425326695706,3357162.8576395195,0.20664703181388674,3522.295860993066,7731.284378161368,4934.126260834222,15858281.80232119,1.2966054327288483,2071.5177394016196,31304,1.83945528980498,9.190560331239276,0.4836494350904897,7.743555520202077,754.5389404296875,112.42845153808594,0.010367990471422672,4906,-0.019712467233400192,1.3347247065507515,2.032702886405481,0.3796783595726382,7.9299451443598405,322.94866943359375,268.3368225097656,0.005836999975144863,5065,1305,0,297,206,2036.6900726399997,9291.292233705106,41246,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,116,2.0471675462068966,237.47143536,1.9531642821585986,0.7101275036968038,1.6208241842448734,0.48337130781923915,0.6841005191031581,12820.837409318037,3044582.662107938,0.17824679798559365,1.3724435474548504,2.518680581127749,2.429349616528884,0.960256339908169,7730.538343456554,1835782.0365261445,22.0565018557987,3.195148414306545,4.655172413793103,0.12917350758549792,3022.5128090619437,717760.4551619253,0.09496261431935414,0.7501951383730785,1.3981054715400842,1.1704540691413545,0.998686124677152,860.6495801508286,204379.69114039862,0.12917350758549792,"CurrentSlice","Yes",605.3259999752045,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",4,4,"C - 4",1,1,,,,1296,0,30,32,72.00208943999999,0.799995981805532,0.8737320384199267,1.104790866049235,0.6435439961005032,3.558137034219388,6.304662080259258,12.325719724218947,33.63051972421894,40640.251808972505,2926183.0456137597,0.1689956176047789,9729.911301881197,2483.227194169091,38437.60865544553,26560387.580912862,2.251458334381267,6868.024454071042,56241,422.3457273516642,448.41217771345873,5.357909992218017,4.681377619171142,118.02197612217815,97.17310543308221,4,62.82160301390507,1,96.36250487533898,4,62.82160301390507,1,-0.6289205887696029,-0.10203260581296902,1.5016304313679498,6.512059032603331,49.36214828491211,1604.424072265625,0.0007210399489849806,1099,0.17249336631271195,16839.872648335746,1212506.01658368,0.13612336744208756,1495.9140677559851,7479.539990227527,11500.024515555662,7946516.9402489625,2.251458334381267,2292.300172187367,22726,-0.15315357479505193,-0.7869002035211579,1.5518942114974208,6.48798445614394,99,282.0657958984375,0.00384420994669199,851,0.17249336631271195,0.08965622104267504,-0.8780186717746354,1.4764985413032141,6.524096320833027,42.068817138671875,499.1849365234375,0.0031267728190869093,930,1230,0,116,195,1056.89897712,8396.052745735975,43359,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,52,1.6752128123076921,87.11106623999999,2.6132447936784144,0.6896727163410775,1.7159070178021045,0.40654272805541064,0.6218066348224388,11724.130281993483,1021301.489601124,0.1775242162051071,1.7187846055433254,2.1955924570254686,2.1635027580439368,0.9702455324139556,6384.2821492134,556141.625194978,30.467666676501036,3.5786029179196017,3.423076923076923,-0.026003499057558093,2742.130940849225,238869.9500270704,0.07790249241882274,0.9623843490636722,1.2449274574768965,1.2340758568398578,1.0026524048935366,539.4877873222545,46995.35637709993,-0.026003499057558093,"CurrentSlice","Yes",618.4930000305176,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",5,1,"C - 5",1,1,,,,726,0,58,10,43.97233247999999,0.35604616475853895,0.1746505150202442,3.310115016790548,0.05136422306473354,4.813061079387862,1.5079067328049574,18.402431361100085,39.39503834487859,19004.943127962084,835691.6779862398,0.24718136372100202,2007.4802805443355,3233.084234112466,16140.474377962084,6811280.187499999,1.8231680976527231,4697.667759809754,27021,244.41161516587675,451.7532454976303,9.482242611694335,1.6560785556793212,1.8418566806553134,53.52993464758964,2,37.554409443654926,1,57.434985522705084,3,57.434985522705084,3,-0.2088108689177814,-0.9238183766085935,2.4145908672311944,6.031865083124923,34.751747131347656,358.5506896972656,0.0036789141595363617,572,0.7070676526818473,13260.947867298579,583114.8086207999,0.2223483889475616,509.4236290565924,7273.573887329243,8521.682242298579,3596149.9062500005,1.8231680976527231,2948.550394211442,20448,-0.333268174688572,-0.5292123167831035,2.4258215224276185,6.028580025397151,36.87373733520508,186.42929077148438,0.006879889406263828,396,0.7070676526818473,-0.030077176067033223,-0.8850050923645667,2.4033602120347703,6.035150140852695,30.592466354370117,1019.363037109375,0.001122557558119297,584,711,0,136,52,303.53413392,11314.881908685204,39713,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2.9523287999999996,8.856986399999998,1.1698302053220695,0.613185857532026,1.7655029017497312,0.3015232698354184,0.8913745194170802,27124.881135531137,240244.7033190158,0.14634695947874873,2.7696365522404496,5.723435502843573,5.614716685495131,0.954912844084529,22385.615510531137,198269.0921324033,10.443357397930088,3.8102352242500985,2,0.3997234783681769,4259.437545787546,37725.78041468967,0.0814339450217086,0.9433193841560716,1.4869904046911127,1.5162212287438497,1.002529417243348,1394.9687957875458,12355.21965271467,0.3997234783681769,"CurrentSlice","Yes",631.6730000972748,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",5,2,"C - 5",1,1,,,,770,0,49,63,217.56926591999996,0.7303696298397292,0.9723646765688669,1.2267903871072376,0.4792881264283493,6.517694842068822,5.996507547541084,22.653569520055772,61.183223172569825,15554.525862068966,3384186.7735439995,0.1894913636813561,9910.827548451101,3221.171745265843,12677.183678729292,26469959.52118676,1.625356926783692,2947.4483170203694,29575,257.4581994252873,444.14095287356315,9.345912364196776,9.087635053253173,68.27119059267068,29.966768828121587,1,29.966768828121587,1,43.83355893975316,2,43.83355893975316,2,0.4080926444808418,1.4488807666860284,0.5885666681346428,7.494964157255339,241.24951171875,258.0953063964844,0.0046105701476335526,2581,0.39367344304686247,12362.164750957854,2689627.110048,0.2754623179526108,3277.132833683501,7605.815404140491,7326.081297173146,15296857.748497529,1.625356926783692,3405.31055721091,29945,0.9472387330958969,1.226245646295446,0.5697582243361078,7.519292100399222,252.54632568359375,177.50782775878906,0.0075120083056390285,2936,0.39367344304686247,1.0034866558394464,2.2381038050380972,0.5963652911730597,7.484395919143851,253.86041259765625,202.39869689941406,0.0061672222800552845,2443,753,0,199,351,3294.9031406399995,8172.658739445305,65535,3,1.5977308799999999,4.793192639999999,5.513082103689359,0.8097047597480816,1.8975578722433621,0.2409662033870156,0.5019266455127922,13354.301587301588,64009.74008059428,0.041019028541077286,1.3930024339054328,3.209321000633965,4.086080763577254,0.998554702047195,9193.202842531715,44064.79220285009,41.742627673190064,55.58457083756168,2,2995.1349206349205,14356.258657394283,0.05580502750079517,0.7146269506084705,1.0409380357947307,1.1004833490562227,0.9984376592544849,117.79273729524766,564.6032814490345,-0.10758599223007982,-0.10758599223007982,145,1.7512759315862065,253.93501007999998,2.65350438816865,0.7069099020841111,1.6355679360795226,0.4512070328277788,0.6099444332393594,13838.212709552485,3514006.683889394,0.15819021382340334,1.537826130165065,2.7478124293497985,2.8006666667173445,0.971765545013344,8802.129255767777,2235168.781288853,45.10919408942446,2.9822151295911548,3.7517241379310344,0.055383068562755794,3377.2366370014547,857598.6194595096,0.07348378150432841,0.850100803356723,1.1737347947547776,1.2119795712549275,1.0003969743957537,499.8944536617819,126940.70312954066,0.055383068562755794,"CurrentSlice","Yes",644.7999999523163,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",5,3,"C - 5",1,1,,,,151,0,29,14,28.967555519999998,0.6955511731017459,0.6236266990878822,1.4013447637321375,0.36344260668292816,2.541783051843278,14.91132525368083,9.316569471645664,22.876854620746666,16429.15107913669,475912.3460313599,0.20566018972292385,1576.366567322591,3118.766451330241,13800.482638178572,3836534.1734136427,1.817141450340698,3378.8223279218305,22991,52.485189928057544,451.2256316546762,4.313608081054687,2.690081168746948,-11.569296286510825,49.603794348072995,4,43.674154994516776,1,47.296280271199564,3,47.296280271199564,3,-0.4286923721017583,-0.6844676977269599,3.7265151907251175,5.602687761871934,30.684782028198242,261.875,0.004682198632508516,368,-0.20578109797018543,12573.604316546762,364226.58112607995,0.08776138644657563,465.30693585963223,6919.441694640404,7886.05101776542,2192322.1829387867,1.817141450340698,1103.4769474507918,16817,0.6902111049521955,1.3032130659737549,4.088815278712282,5.535978859575808,47.99106979370117,170.27232360839844,0.006132491398602724,224,-0.20578109797018543,0.3509955835800855,-1.4778004997982792,3.623000879871642,5.622634443326897,22.869346618652344,476.44219970703125,0.003072800114750862,398,0,0,198,244,1795.57164288,7593.819057567317,65535,3,1.45879776,4.376393279999999,3.2920646200576726,0.39396211991815155,1.6115116596390369,0.35467891992911577,0.5951827933576023,9240.00925925926,40437.91442936,0.17059511510587425,1.4367969137093894,1.951758238408784,3.4841758242074574,0.9897922839309383,4505.811612530026,19719.203662022366,36.371575406132386,39.32995915867062,2,2742.0925925925926,12000.475595359998,0.10394171837602824,0.697148902323646,1.0431488999780945,1.0122210660124205,0.9977301984805157,113.42415163447504,496.38869500281754,-0.1496194023125226,-0.1496194023125226,63,2.5669547885714286,161.71815167999998,1.7181151510582742,0.6975473100251947,1.8802356346609794,0.45744048453542785,0.8329533223601872,13073.67106020745,2114249.919529055,0.194966165859819,1.8411398116501356,2.7890181139073786,2.7192524622695924,0.9535898928301904,8386.117761426109,1356187.4641486492,40.828429081058374,3.8899453184054766,3.746031746031746,0.08901422005620716,2980.2294230451566,481957.1938772155,0.07635312829397531,0.974351235307416,1.1337410898267943,1.087372505110951,0.9950686148253625,351.56098208703906,56853.79222592154,0.08901422005620716,"CurrentSlice","Yes",657.9100000858307,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",5,4,"C - 5",1,1,,,,3,0,43,24,76.79528207999999,0.7404201284032471,0.7041719234295353,1.223733441736219,0.5354142347200916,3.867414790703298,9.10246595612615,13.57680068941133,36.10215227595509,15587.957937584802,1197081.6268679998,0.20006655736826057,4236.569895844408,2991.530226046376,13241.576119402984,9759041.6,1.4892075000418947,3118.6290809738425,23437,8.628001628222524,449.8312168249661,6.324198168182373,4.453322788238525,10.873807426223946,63.215554373535454,1,63.215554373535454,1,69.17789234966217,2,69.17789234966217,2,-0.4081741955075802,0.1085471658905397,1.4967717229812452,6.535794132551434,82.57615661621094,246.3256072998047,0.005039628129452467,906,0.12280806410901202,10155.388059701492,779885.8906766399,0.1582913151958898,1002.3635205730998,6819.323740590749,6017.2032112166435,4434678.766666667,1.4892075000418947,1607.5097322947845,16997,0.4975222038619623,0.3299031597094717,1.526228485057137,6.517233082970667,135.50379943847656,112.582275390625,0.009847472421824932,790,0.12280806410901202,0.4733827128528209,-0.5331862377829006,1.437858198829462,6.562376997036987,61.64640426635742,592.4326171875,0.0019479140173643827,987,0,0,187,252,3061.59969888,7534.309951671091,38136,1,1.0419983999999998,1.0419983999999998,1.2566370614359172,0.3535533966440824,1.413716694115407,0.2222222222222222,0.48419999999999996,6690,6970.969295999999,0.15755374838634092,1.6094263544878529,1.2190583261733374,2.382696882219675,1.0141770470021592,1202.1575757575756,1252.6462704872724,29.01032901490081,,,2355.7,2454.6356308799996,0.06292093337181971,1.0187090015409634,1.0039712981689408,0.881949539489359,1.012659601062199,9.318181818181529,9.709530545454243,-0.7443603612391225,-0.7443603612391225,225,1.6611770047999999,373.76482608,2.124823691493237,0.6855332692181121,1.5073317547122833,0.4531325693786998,0.5945084085149075,12289.81225239837,4593499.539073529,0.21484548262497546,1.2114649894304117,2.9698557948415836,2.5312356599266193,0.9548089948126038,8151.6274039135205,3046791.5988926985,41.900059065368225,2.78214410310973,4.88,0.004311243373463763,2794.8549333412334,1044618.468079116,0.08277014968952681,0.6743029015334676,1.19113390313727,1.0378649186852174,1.0011042447690113,448.4731151594151,167623.47588911458,0.004311243373463763,"CurrentSlice","Yes",671.0499999523163,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",6,1,"C - 6",1,1,,,,231,0,80,53,187.97651136,0.506201309723113,0.601928962986454,2.1025641468435086,0.12665235567558175,7.931155786613637,1.6948656648431053,29.396075811577298,68.31169986232702,33616.21286031042,6319058.418616319,0.26708215395246787,14544.316217664835,3180.5841674079993,,,2.2118172711149198,8978.290538456358,54508,86.90387960088692,444.4848638580931,13.590172576904296,8.180318486022948,-30.60232727750745,12.256354344669042,1,12.256354344669042,1,12.256354344669042,1,12.256354344669042,1,-0.12415718989688675,-0.6860737738607412,0.5789057084281789,7.467023466451396,94.61127471923828,1165.06982421875,0.001215181197039783,3051,0.4147455719867517,17143.25110864745,3222528.536772,0.23476348782274822,3014.646521203314,7750.753795319621,,,2.2118172711149198,4024.609422887271,42005,1.3585963701449841,3.6956393056871075,0.6342151710168584,7.401689695519052,226.85177612304688,318.6441955566406,0.0038651053328067064,2847,0.4147455719867517,2.926807900288386,10.61139621497703,0.6846082369309886,7.3963687260466955,139.0679473876953,357.3100280761719,0.006545965559780598,2590,151,0,171,103,677.8199592,12167.976018447349,54386,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34,1.8418854070588233,62.62410383999999,2.835006311314128,0.7349952104190671,1.5983231271031368,0.42799108594166646,0.6019677954379231,15309.856217151957,958766.0255183936,0.16103640985595005,1.3719545970887164,,3.063573517015377,0.9621142746771144,15309.856217151957,958766.0255183936,23.023286602222488,3.049735657359408,3.6470588235294117,0.10428041988005078,4172.136117867442,261276.28547994513,0.11990298567842421,0.8171166538782657,,1.5035715716093843,1.0103260849080642,4172.136117867442,261276.28547994513,0.10428041988005078,"CurrentSlice","Yes",1210.6130001544952,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",6,2,"C - 6",1,1,,,,291,0,51,13,47.931926399999995,0.45848997735770386,0.27596064083299404,2.232256948081832,0.1258924879616511,4.1266212736665695,3.89796540207212,16.152906839327713,36.2453627586807,14131.254347826087,677338.2433396799,0.19095264157245662,2075.9895430747215,2959.003545947079,11364.33359727421,5227593.454746136,1.5745339927834792,2698.400346449654,19168,102.71636347826087,451.4000113043478,7.955893160247802,2.1955133749008175,2.713609188237336,72.72453742277756,5,58.385077738074614,1,62.550018651680105,3,61.60756051297886,2,-0.5751410690740604,-0.6448165033717101,2.2967863894139886,6.0920486053645355,54.40713119506836,191.17823791503906,0.006292050704360008,533,-0.12562553391493045,11865.710869565217,568746.3800836799,0.07540736689896987,555.8143739682182,7536.014416931626,6500.030737114886,2990014.1390728476,1.5745339927834792,894.7620130583991,16969,0.22880345791687634,3.3269120832964454,2.4102079395085068,6.057760592068702,87.23999786376953,147.46461486816406,0.00705426000058651,325,-0.12562553391493045,0.8687961093565489,-0.596855284333432,2.4763705103969755,6.040417183170596,34.70503616333008,139.7050323486328,0.008607941679656506,278,255,0,237,75,1162.5576148799998,9904.568073854978,34772,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73,1.8441944284931506,134.62619328,2.6008613118322046,0.6664632747256627,1.6159345177344726,0.4273347759772855,0.6224896506091889,13946.367722577746,1877546.396573705,0.14744287060118025,1.3529345106911894,2.5991798575978278,2.6551295962405135,0.9724296280815641,8580.687590127414,1155185.3059837907,20.922205631751382,3.1113224706021376,4.2465753424657535,0.12633110590655786,3135.277310295128,422090.4491621904,0.06288793056026153,0.8405461154233494,1.1331286989950042,1.1628154962195663,0.9986460809109539,368.35655974325164,49590.44140795086,0.12633110590655786,"CurrentSlice","Yes",1223.7530000209808,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",5,1,"C - 5",1,1,,,,931,0,72,49,228.30184943999998,0.7223128900086871,0.6881921584555538,1.2750941567386178,0.42185198255714074,6.806688874265232,2.3990842750777914,25.631620924163183,63.02269406918456,13923.410314924691,3178740.3254092797,0.20895454429733823,9100.925571149848,3233.084234112466,11104.685151220296,24330365.16632367,2.187031585133164,2909.3598574199473,22098,313.69250223642166,446.170447284345,11.214350834655761,7.71762830657959,32.040063292985515,68.83124534361187,4,59.462582197007066,1,68.83124534361187,4,66.35613308438421,3,0.0012977226922935236,-0.42155938410486105,0.5526529529020112,7.552256991835992,246.64666748046875,205.26669311523438,0.005908363498747349,2666,0.22166358744628376,15907.535828388864,3631719.8496542396,0.26417542038039926,4103.343187762654,7273.573887329243,11047.743124927685,24205605.186716557,2.187031585133164,4202.379964680891,36512,0.8274130307395973,0.9062195799124035,0.527655457859327,7.586281272755043,232.7629852294922,276.8091735839844,0.004632912576198578,3139,0.22166358744628376,0.7260649338118549,-0.24343810276037825,0.5197395844291437,7.59869689990184,181.9602508544922,264.0137939453125,0.006399042904376984,3120,845,0,305,156,1892.9984932799998,9388.01409148456,42710,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,46,2.634443780869565,121.18441391999998,1.9912981875047568,0.7407855239170237,1.7340833621206846,0.4776181167965296,0.7795273744755907,15348.532979360569,1860002.9736356018,0.161576703573514,1.9202684183228462,3.15826906946653,3.1770706675725537,0.9672198730564895,10488.74027589939,1271071.8430939666,24.663112650657855,4.0274605057038295,3.608695652173913,0.0071885168584795,3789.5979726983023,459240.2093138639,0.09872095766688906,0.9820871890689977,1.344436847371801,1.3489736221845325,0.9970015130604957,970.8728089939059,117654.65234879058,0.0071885168584795,"CurrentSlice","Yes",631.6730000972748,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",5,2,"C - 5",1,1,,,,1313,0,39,21,59.08130927999999,0.6935849506730031,0.7328291419335258,1.2716546078407138,0.4751217728392332,3.457957875858365,5.959367677381458,12.355272785333394,32.717503448350875,13776.070546737214,813908.2846348799,0.21525391575095157,2204.8432906549306,3221.171745265843,10743.445546737214,6091533.625,2.592939110120069,2965.3531288465374,18217,430.7859936507936,450.2268656084656,5.582761376953124,4.091210229492187,13.756201554653575,34.161535702951255,3,29.43103948709006,1,34.161535702951255,3,35.640869586097544,2,-0.4261234015753767,-0.9717531417137986,1.875647378292881,6.296349958930295,53.87676239013672,180.6267547607422,0.006847458425909281,568,0.12769825122041126,19721.41622574956,1165167.0914731198,0.19501548302198404,1156.8498349614038,7605.815404140491,14441.603725749559,8188389.3125,2.592939110120069,3845.981511142144,33246,0.32581197262656497,1.2631586847367062,1.8818684309572022,6.293904995330436,48.122642517089844,431.7782897949219,0.002838748274371028,636,0.12769825122041126,0.6085792744721059,-0.22064638746104448,1.8134368516496675,6.322321722296352,47.95771026611328,1162.1107177734375,0.000947941152844578,804,1223,0,165,165,1255.50387216,10139.130633247572,49232,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,89,1.4447483433707864,128.58260256,2.080891312463006,0.6893616142369301,1.4401226128227125,0.4546351511278918,0.5403762858305494,14912.721873263248,1917516.5897176266,0.18905324872231138,1.353983302228008,2.8244794437801053,3.0181327558033813,0.9631163757449905,9632.909373263248,1238624.5574388069,24.023858575933865,2.757056156134388,4.269662921348314,0.07646966948043973,3576.0344047605595,459815.8106082131,0.07655765122634596,0.7868532487368193,1.1791878009185308,1.2833215763413814,1.0007332428113298,543.4094047605595,69872.99551969318,0.07646966948043973,"CurrentSlice","Yes",644.7999999523163,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",5,3,"C - 5",1,1,,,,645,0,30,19,44.284932,0.8117477536623805,0.7056650260220133,1.1405874105110716,0.6483675154290087,2.8353217681404623,7.4640698894070665,9.383435660780117,26.18317903454877,17779.416470588236,787360.24939968,0.14683943329988372,2308.482716538986,3118.766451330241,15033.773024208767,6389353.535288726,1.0051844644496433,2610.7194389437955,22981,213.04875952941174,450.476894117647,4.631825792312622,3.2685174682617184,4.354286619690036,43.81633393037247,3,18.334020193456038,1,42.899095657685066,2,42.899095657685066,2,-0.9576798400383044,0.5539837177278093,2.4083044982698962,6.035779823499477,58.416507720947266,307.64874267578125,0.0036974959075450897,521,-0.18283438956882003,6955.315294117647,308015.66483856,0.09082307329937388,419.04048264398955,6919.441694640404,2418.436895095343,1027835.6804155208,1.0051844644496433,631.7031107779032,10029,0.6285110808821541,3.8464385949495004,2.984083044982699,5.878346812972178,93.6179428100586,55.55481719970703,0.01922219805419445,301,-0.18283438956882003,-0.09568218261818628,0.5018231703598559,2.4193771626297575,6.032517954414489,65.53648376464844,305.6437683105469,0.0034814514219760895,466,608,0,149,173,1005.5284559999999,7049.876062176166,25867,1,0.10419983999999999,0.10419983999999999,12.566370614359172,1,3.1415925460576575,0,0.2282540689670175,7521,783.68699664,0,0,1.35953350592073,2.8359805319031697,1,1988.9553926061717,207.24883367670026,15.628180994966662,,,2422,252.37201247999997,0,0,0.8821247358952454,0.8940615019728948,1,0,0,0,0,44,2.4179099236363633,106.38803663999998,2.6423617445472636,0.6153659382611208,1.9352027482604763,0.34225554339021247,0.7878325834741511,10741.909634613945,1142810.6757908773,0.14622892835104528,1.575952454942088,2.3676873589842797,2.234258770079376,0.9728076527071564,6205.031235591641,660141.090444468,24.265981306520047,3.555537516418081,3.4545454545454546,0.26099224678289956,3458.128472249514,367903.49861150846,0.07545536115237428,0.93009385897725,1.259496558742746,1.2617397139926445,0.9994426894011572,712.4850258700453,75799.88303771372,0.26099224678289956,"CurrentSlice","Yes",657.9100000858307,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",5,4,"C - 5",1,1,,,,201,0,42,63,182.97491903999997,0.6973794448921855,0.867788184320013,1.3606499615324705,0.33925148434410923,6.294758330061519,5.211999678422358,21.82185301022807,57.42039062083368,16420.11617312073,3004469.4274041597,0.18729602508909649,9791.605508866482,2991.530226046376,13826.728376920151,24279735.029871784,1.3339665846707491,3075.422490726699,26970,71.49670728929384,443.21818701594526,9.508501265716552,8.251365048980713,109.42263596695324,72.40127874553106,3,62.79452424891413,2,76.25767184245774,4,62.79452424891413,2,-0.03555518229240178,-0.03525048436631151,0.660929530253579,7.363411578762794,215.64208984375,281.04266357421875,0.004184540361166,2414,0.3761759138300456,9096.75,1664477.0947771198,0.21948390428728387,2302.7544437452216,6819.323740590749,4478.727915016446,7864646.218768879,1.3339665846707491,1996.5902063253495,22186,0.2399247311986641,1.4979189681923932,0.7141152235615216,7.303203565331439,345.94476318359375,91.7148666381836,0.013634556904435158,2462,0.3761759138300456,0.45826849561013966,-0.3409145906646964,0.6006091707701807,7.43437407562918,98.04674530029297,667.3627319335938,0.002448295010253787,2845,122,0,169,338,2231.75217312,7113.946260155009,62095,2,0.6251990399999999,1.2503980799999999,2.169698642853393,0.2522417178697274,1.4199998456349021,0.2029290457703934,0.3435195347974809,8500.45,10628.946359136,0.13556800418542622,2.172111141340328,2.7600685123879973,3.027503096033518,0.9724796090960988,5420.653262401826,6777.97443165298,56.83249284267268,11.572638867397528,1,2678.95,3349.7539364159993,0.08847019171694553,1.0233696564837156,1.032992444834041,1.0029709720316755,0.9935444230591259,85.5622037994226,106.98681535136672,0.29031089480198813,0.29031089480198813,117,1.6057462523076922,187.87231151999998,1.9996730277033652,0.712088593851875,1.420515100978129,0.48452148117086896,0.5669717042403293,12991.178590310372,2440682.7511307443,0.2219929685038192,1.612418560489114,2.813147783020322,2.675690550590107,0.9506211577418425,8373.156505326817,1573084.267374474,40.47024042556651,3.4673869763537724,4.803418803418803,0.10581794270523688,3194.3839570752207,600136.2978981261,0.08005020834250412,0.8168004646946757,1.2317417247644677,1.186229383968694,1.0000264898868876,600.9961608746435,112910.53795816505,0.10581794270523688,"CurrentSlice","Yes",671.0499999523163,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",6,1,"C - 6",1,1,,,,1399,0,30,7,16.463574719999997,0.49152890944109134,0.2541004277421446,2.2450032763260452,0.12115850062001032,2.425384681897069,8.744672862869951,9.366763863789883,20.515989517274384,13930.272151898735,229342.07644271996,0.2130741567683756,756.8311907536895,3180.5841674079993,11232.251519555626,1774695.740089789,1.7457109729814508,2968.180992319808,18572,456.25941265822786,452.1038734177215,4.705255391693115,1.1956074076652525,0.40056269013483126,46.30833174689606,2,42.13176914551922,1,46.30833174689606,2,42.13176914551922,1,-0.3870870722945816,-0.9706162484901699,6.409229290177857,5.05382101808317,23.0675106048584,193.10548400878906,0.006303355097770691,237,-0.35741354144469284,13530.575949367088,222761.64814704,0.12038768472580258,311.4470754453614,7750.753795319621,8603.437445211963,1359343.11634349,1.7457109729814508,1628.914711550932,17828,0.6017820152237506,-0.38659128552304844,6.409229290177857,5.05382101808317,22.478872299194336,198.63380432128906,0.005352568347007036,142,-0.35741354144469284,0.771340837778346,-0.1697398348876269,6.409229290177857,5.05382101808317,15.04444408416748,321.61334228515625,0.004473008215427399,225,1126,0,426,110,1925.5088433599997,6921.186373721522,50595,2,0.9898984799999999,1.9797969599999998,1.0476512766461425,0.9077903086885021,1.4750971918153661,0.2871092326299305,0.48127576015176143,13668.517045454544,27060.888494299088,0.14445313257037726,2.6554044484268218,3.892997015874182,4.409628954630171,0.9731184742432111,10157.464509395704,20109.717357009504,35.40626330719973,2.263208729143998,1,2637.573863636364,5221.860717002727,0.08477128895210401,0.9930514908412666,0.9775958834479893,0.9617818628153791,1.0014846974998972,0,0,0.2586009785582754,0.2586009785582754,37,1.9178402983783784,70.96009104,2.375975043153507,0.6504338813469632,1.4610467152172495,0.4934921668522585,0.6102137827635239,13573.211383296486,963156.3154638829,0.1512695433614401,1.8870060748745752,2.7547858400672127,2.7160627993444493,0.9493008077728233,8646.07287914136,613526.1186423458,31.59274912703353,3.4224252215930373,2.6486486486486487,0.2062566827421869,3265.626968176523,231729.18696448524,0.06498005238283193,0.9747041371060666,1.2103787973409508,1.1768800763242901,0.9974016933072238,567.6063358334145,40277.397265619904,0.2062566827421869,"CurrentSlice","Yes",1210.6130001544952,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",6,2,"C - 6",1,1,,,,476,0,74,40,197.04189743999999,0.658086094534056,0.9374152522590093,1.4108570229038895,0.3446992327375774,6.651672384498532,2.5696418444576925,25.01439663873586,61.33987200017403,14525.544156530936,2862140.7819513595,0.19036975080094667,8099.264519410671,2959.003545947079,11536.549324489592,21815614.77260982,1.7132505586193596,2765.2242213269415,23073,167.0419158117398,447.6471249074563,9.706036853027342,9.098586985015869,21.086989969911773,60.28082918662333,6,40.51662464637645,1,50.99874741452297,3,44.28065365724314,2,-0.12126036120330605,-0.20737629860199736,0.6239021936132663,7.427273840742168,229.8524169921875,221.35963439941406,0.005387652199715376,2358,-0.09942532762312349,12911.080909571656,2544023.8804233596,0.22867622514740954,2239.1855168049588,7536.014416931626,7238.893140407143,13688746.928509906,1.7132505586193596,2952.4572449736293,33628,2.1116196672386693,7.434924940213435,0.6619347791495298,7.382540335668096,304.8497314453125,186.148681640625,0.006496846675872803,2529,-0.09942532762312349,1.9355116624783084,4.494002068212683,0.6423591836529237,7.404810076005146,189.64646911621094,270.03704833984375,0.005427648313343525,2376,447,0,188,148,1026.9936230399999,11288.642146915585,35704,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31,4.369670709677419,135.459792,1.4774382083345299,0.6521821506060966,2.4883633539952235,0.45506264441717226,1.274432924221989,17013.59451125493,2304657.9736669343,0.13966262758607784,1.486928180996634,2.99947660473182,3.2390726548918654,0.9780870691261803,11341.406742090418,1536304.5982709655,23.618708122665367,4.632298139048605,4.774193548387097,0.050248118503993015,3660.1617367460335,495804.7475459764,0.12117790976181088,0.8004101931801154,1.2245460238036994,1.3574852764005034,1.0047083991798493,671.1669047046898,90916.1293085811,0.050248118503993015,"CurrentSlice","Yes",1223.7530000209808,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",5,1,"C - 5",1,1,,,,612,3,64,53,172.55493503999998,0.6126024414056185,0.5190830707503782,1.5786276879196783,0.23613211130583478,6.584360869675043,4.563812100408782,24.469006531528816,59.494834758854736,21219.93538647343,3661604.5721659195,0.2557738132814473,10585.47461440985,3233.084234112466,18332.299495924497,30358287.96525097,1.9717380132189595,5427.503791384232,40967,207.67345797101447,443.96598188405795,11.688202281188964,6.067147931671142,34.721531440804036,48.76381244255737,2,37.554409443654926,1,48.76381244255737,2,48.76381244255737,2,0.42728325390859145,0.1689328289957972,0.6636677635417395,7.345599977008967,144.1609649658203,478.379638671875,0.0027508193161338568,2634,-0.03997478320470536,14341.582125603865,2474710.7720544,0.2412912211123283,2821.0296975757237,7273.573887329243,9379.733208363643,15532838.193050193,1.9717380132189595,3460.4978637696977,35649,1.1788309726167494,3.3506308575826926,0.7074260776214147,7.297456573145578,244.7761688232422,230.2898406982422,0.005401213653385639,2636,-0.03997478320470536,0.9949259406970209,0.6458135703654819,0.7402448131811711,7.352801848409666,74.46195220947266,803.5545043945312,0.0033415770158171654,2799,439,0,557,241,4372.537885919999,8652.52429521245,52965,4,0.8075487599999999,3.2301950399999995,2.3577002783044723,0.5327834048723394,1.386008451370521,0.20347761767320455,0.412490746617722,6328.431818181818,20442.069070069087,0.22202181328303497,0.6069628795213593,2.194492202740263,2.2658186467208186,0.9809403737356378,3444.6522311413614,11126.898551557759,10.84249647925619,10.37660911581681,2.5,3535.650974025974,11420.842239469868,0.05843032408751967,0.5589387927002756,1.2244102470113893,1.278111622055012,0.9977315962360432,648.0150834770398,2093.2151084927195,-0.2958504519935402,-0.2958504519935402,158,2.847689298227848,449.93490911999993,1.831804510748461,0.6876924199632165,1.6556026717273595,0.468929596515492,0.8047137265595755,14664.373272592293,6598013.455705569,0.19425992008684298,1.7869332031500667,2.9554251887114313,3.035452980772686,0.9642811193441599,9702.52435535207,4365504.414059919,46.38066779908224,3.4375241099433773,3.8354430379746836,0.12206370990227894,3550.0909833846795,1597309.863976917,0.0865533329496268,0.9032822327195601,1.2294108807152324,1.26371692391718,1.0032402986662858,662.4550928357453,298061.6719911322,0.12206370990227894,"CurrentSlice","Yes",631.6730000972748,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",5,2,"C - 5",1,1,,,,1012,8,49,76,245.18222351999998,0.7117439885195402,0.9230349281065783,1.3924862548363366,0.3056872738558607,7.3714008459025475,3.001035761081407,26.424290488866486,65.79418593125052,15904.643858903528,3899535.9456196795,0.15138862203841433,10559.720636511092,3221.171745265843,13027.12577753738,30652826.954545453,1.3572375155108691,2407.7821178111335,25022,334.42299498512534,438.3766674033149,10.83229169769287,9.998583588409423,65.84817701614764,25.874381052531117,1,25.874381052531117,1,45.43269821249192,3,40.5025586907804,2,-0.05739937281020916,0.08253948169436987,0.5423897551732477,7.585774222509217,373.34027099609375,261.042236328125,0.004250466823577881,3221,0.12405063395968198,10322.898002549937,2530991.0854353597,0.2372222915156744,2597.2381892060503,7605.815404140491,5396.619248155161,12698245.090909094,1.3572375155108691,2448.821519247474,28949,1.683456602827577,5.574494780194636,0.5745393976710294,7.53847394580004,497.1990661621094,120.279296875,0.01009057741612196,3627,0.12405063395968198,0.5503928497970251,-0.6469730923255703,0.9234894499503216,7.644678210805836,92.26718139648438,1373.318115234375,0.0012853150255978107,4001,986,0,176,254,2979.6986246399997,9432.03357112883,49199,1,13.233379679999999,13.233379679999999,0.33218140206706664,0.19926368987454665,3.3054052907201488,0.05737989137332711,2.6385042035325417,11060.874015748032,146372.74544303998,0.343968884363807,2.7372499109463355,2.3089458429999596,3.384349548244094,1.1184421803805866,6270.430771147328,82978.99115174777,42.71740468401769,,,2921.763779527559,38664.80942976,0.08587587752894983,1.0146116700309915,1.0153763406207357,1.0735250579509963,0.9999097093025127,44.24569816141138,585.5201229766346,0.04354525026767579,0.04354525026767579,132,2.3910705709090907,315.62131536,2.035113625388926,0.69313263657113,1.7849974266012025,0.4490217865863421,0.7691082709278596,14407.751272470334,4547393.4079968,0.17960287091871935,1.6656405030778323,2.924672352253119,2.915933551397693,0.9634809634993354,9481.472518075558,2992554.8277046983,29.6615889225097,3.5776438329996947,4.348484848484849,0.10703165952314918,3707.025775226651,1170016.3512504592,0.08019603996051203,0.9074727606328269,1.2882719310200412,1.330330087168312,0.9992513240091704,829.5076938605034,261810.30943749225,0.10703165952314918,"CurrentSlice","Yes",644.7999999523163,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",5,3,"C - 5",1,1,,,,981,0,71,45,231.74044415999998,0.7514371940596062,0.9588118847824654,1.2244456716027872,0.4735081477248332,6.7201777924243595,0.5940936539399172,24.71265388905044,62.2528882760421,23019.95998201439,5334655.750777439,0.17898847100750767,12124.828242934276,3118.766451330241,20212.995276132035,44953701.49411765,1.290812183186109,4120.307439834769,38599,329.5490455035971,446.7707303956834,9.70104051132202,9.301472937011718,23.64489262612048,22.974596146728633,2,22.974596146728633,2,22.974596146728633,2,22.974596146728633,2,-0.4351626028170186,0.30331020530669583,0.5199976709280058,7.602871238803948,213.2213592529297,536.8876953125,0.002221794333308935,3108,-0.22555038306708525,8931.69964028777,2069836.0417439998,0.21782365279915272,2586.271590903692,6919.441694640404,4671.329052052476,10389035.811764706,1.290812183186109,1945.5354413523605,24458,1.6247569727274747,5.894887270939956,0.6497949122716216,7.435796026313147,447.5879821777344,90.51573944091797,0.013341018930077553,2796,-0.22555038306708525,1.7013575513404942,4.0008037954538365,0.5098888515087211,7.616514281942984,178.51585388183594,574.3866577148438,0.002343961037695408,3313,942,0,136,79,522.9789969599999,8234.978681012153,48070,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,1.9599493714285712,41.15893679999999,1.4592659051361354,0.6838784795515167,1.518862191133173,0.49441020902252963,0.6643264853633788,14637.264589453805,602454.248162207,0.26973222883162695,1.6569983495224192,3.43567872472727,3.044471410705066,0.928154812330231,10376.894001218512,427101.9243764518,13.677372885795569,3.1979232677971594,3.8095238095238093,-0.031160656586176477,5221.426157489936,214908.34922199507,0.11994899439922714,0.7831117807559471,1.8601680835344208,1.9051000561293536,0.9993829132990746,2414.4614516075826,99376.66629275275,-0.031160656586176477,"CurrentSlice","Yes",657.9100000858307,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",5,4,"C - 5",1,1,,,,400,0,32,20,49.39072416,0.7955835537694459,0.8470620672053302,1.147335048083212,0.6085785008212363,3.0031558704288375,7.948925390674504,10.429987198458106,27.93088717248281,19431.194092827005,959720.7475382399,0.1679812652800507,3153.9253424905705,2991.530226046376,16808.69579466499,7967321.806671205,1.5558585216350758,3264.076569615327,28706,133.47439493670885,450.2338126582278,4.583427772521972,3.882447803878784,-16.289419213135172,50.34432784075531,3,50.197704792068556,2,50.34432784075531,3,50.197704792068556,2,-0.4987623953883216,0.34120355173180705,2.1898200074774343,6.134885276863686,54.25776290893555,371.50311279296875,0.0031413377728313208,644,0.008118597591904298,10609.902953586497,524030.79014495993,0.11005713314718296,742.6795044999551,6819.323740590749,5970.733904346652,2830127.870660313,1.5558585216350758,1167.695502041559,14551,-0.2746285695689835,0.2927189254825424,2.332247325036942,6.08809053049677,102.77035522460938,121.9227523803711,0.008709799498319626,479,0.008118597591904298,0.11933022247345579,-0.964915157524612,2.1898200074774343,6.134885276863686,48.28919982910156,307.98431396484375,0.0038095854688435793,574,298,0,201,192,1617.1815167999998,6888.781443298969,56455,10,3.157255152,31.572551519999998,3.187317107768533,0.765066602927066,1.9616433402109443,0.2908676464530419,0.7986170630045175,13098.27666951776,413546.0149715635,0.1571436152150791,2.4325575873925716,3.6717935002574653,4.665055752303538,1.011716642769533,9531.00724965542,300918.21742723923,27.824758338225394,9.534686831046127,2.2,2701.491613514174,85292.98314852417,0.058254688537149914,1.0020467424554507,1.0301213981368535,1.0114103173040672,0.9956716660563553,78.99331535215879,2494.02051869164,0.1990736761242039,0.1990736761242039,29,2.094776093793103,60.748506719999995,2.2939532978038075,0.6894732228120415,1.6027178144446617,0.4226983536502053,0.6592711983341728,15526.0448873979,943184.042177113,0.21495259133791939,2.394249022422627,3.3467297101281384,3.1977769610706206,0.9512749087561521,10886.875838158056,661361.4500141502,22.606743350316854,4.541540666169659,3.0344827586206895,0.17091723484955393,3155.417041629319,191686.8733578212,0.07437439412718305,1.006427599797099,1.2032103295703953,1.1717590821121588,0.9973483522344984,532.918743467304,32374.017868737472,0.17091723484955393,"CurrentSlice","Yes",671.0499999523163,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",6,1,"C - 6",1,1,,,,1000,34,59,55,176.82712847999997,0.662000729408598,0.38901038927552767,1.5748764907645356,0.2374285278345738,6.657447947548909,2.7677656360068656,24.01987747845521,57.93621848298667,19684.14790807307,3480691.35116016,0.21431495244668688,10419.456033742605,3180.5841674079993,16929.136878661306,28728745.283088237,1.796222653925333,4218.607222872231,40422,332.6717451974072,433.292138361815,12.407269129943847,4.826556594085693,41.278074723334385,30.92755635158128,2,21.390849191465865,1,68.48129913723835,3,51.157734609180324,2,0.2645447497869476,1.0058414820748922,0.6677526183160063,7.3478665644180445,171.3198699951172,404.81671142578125,0.0030543559696525335,2526,-0.028394637801177704,13922.079552150855,2461801.3496769597,0.22891577527456908,2550.073830135282,7750.753795319621,8921.98739528811,15140612.609803922,1.796222653925333,3186.9836341148384,38282,1.8472294021581483,6.03599412866417,0.7017826529467753,7.308454703836226,324.04193115234375,213.31947326660156,0.005596342496573925,2814,-0.028394637801177704,0.9862187625590089,1.1724483387905407,0.6337225836852375,7.384335097224991,137.51162719726562,280.1017150878906,0.007557799108326435,2881,904,0,378,196,2482.24858848,9596.512635379062,56712,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,78,2.9964133476923074,233.72024111999997,1.9473125617798588,0.6027918253773581,1.8563797569647944,0.35242626462624044,0.873387669646673,17794.693844600282,4158980.1360165575,0.19118849816113467,1.7947849910484468,3.5588731740027315,3.56080109652756,0.9683755690572031,12794.601687737537,2990357.3914923756,29.286305867194493,3.585567300333612,3.4358974358974357,0.009509014697814486,3834.835634203547,896278.709081621,0.10140303157590806,0.8609195915134574,1.3919492855977207,1.3820138361953351,1.001928171647675,1079.8246047917823,252376.86699924406,0.009509014697814486,"CurrentSlice","Yes",1210.6130001544952,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",6,2,"C - 6",1,1,,,,632,0,62,32,171.61713647999997,0.7798282693697712,0.5790094522643396,1.2506601294280368,0.4197095812873832,5.844670769588068,3.2967470235010574,20.22078564645795,52.587892965625265,19131.708561020037,3283329.03921216,0.166237693450578,9270.624851320612,2959.003545947079,16137.328321499079,26578179.745508984,1.5099015635986242,3180.411102952648,30486,214.1710382513661,448.3088342440801,10.115971451568603,5.857243089294433,7.728829666660239,36.24048510451165,3,21.078108944698126,1,39.93595527008984,2,39.93595527008984,2,0.2701090200408863,0.529791396906738,0.7052251172210959,7.297907528766096,182.80870056152344,387.8497619628906,0.0029443553648889065,2070,0.13258267531066134,11378.639951426836,1952769.6055007998,0.1099724385653225,1905.972869805852,7536.014416931626,5869.962556217255,9667828.330089819,1.5099015635986242,1251.336783015212,16593,0.07180839662495533,1.342170612881537,0.8674305806697536,7.140013083101017,389.1176452636719,137.7205810546875,0.007761118467897177,1972,0.13258267531066134,1.621717304241482,3.9070583959445653,0.7066997123433565,7.29895555088796,129.0050506591797,293.1282958984375,0.005445133429020643,1980,603,0,227,88,1272.8010456,10041.036921817438,31684,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,80,2.0540393459999997,164.32314767999998,1.8384899012408102,0.6917362654214408,1.3487328853502618,0.48165197316810504,0.6257547426775673,14783.103951422823,2429206.1737784436,0.17102774802892307,1.2694910043584708,2.6836031393449193,2.81442864597492,0.9631931176589216,9274.426556213242,1524002.9646439422,27.96628720336117,3.171970117975797,4.9,0.059054209686472195,3411.136994052711,560528.7680304348,0.07443902387750989,0.7363696922398125,1.1391796369182645,1.2651266742459055,1.0006962319856678,416.7567545317529,68482.78172155873,0.059054209686472195,"CurrentSlice","Yes",1223.7530000209808,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",6,3,"C - 6",1,1,,,,306,0,30,16,36.469944,0.7675444486945585,0.5932856113540776,1.2284181562059975,0.5165810032910143,2.6702426871425646,4.156558559727736,9.449828722257351,24.435470896614735,28105.757142857143,1025015.3890775999,0.20547878147895624,3082.317530615084,3152.086665287932,25506.56147458613,8927296.516105145,1.3449936151221937,5775.136730257756,36487,103.18348114285715,450.9008742857143,4.592986392974853,2.724952740097046,-1.8708483750385931,50.1274185965299,2,43.08670188118402,1,63.98346109810469,3,65.44964046891354,2,-0.7722238516520707,-0.39290845843487787,2.955102040816327,5.8341681082928325,31.61090850830078,772.0473022460938,0.0016306783072650433,550,0.4037041215927824,9576.04,349237.64254176,0.10634540496446547,512.196527968762,7119.766140399121,4812.528152536099,1684384.8533876345,1.3449936151221937,1018.36785175592,12795,0.17820776925994755,-0.06535021694266341,2.987755102040816,5.82624642622929,73.2258071899414,100.46451568603516,0.010526890866458416,310,0.4037041215927824,-0.1862927782538557,-1.1385510942248773,2.987755102040816,5.82624642622929,39.43967819213867,265.96783447265625,0.004226332064718008,373,233,0,120,79,405.64997711999996,6816.239917801182,61750,3,67.38256319999999,202.14768959999998,8.466239818431925,0.9053802459159513,2.5636991929643,0.18015439633645167,2.3944350051957053,12369.393704850363,2500444.3591882847,0.10310941046665123,3.4537502610895014,4.588929999755625,4.031036705620546,1.0157100121649965,9673.908329063617,1955558.2181224066,20.110521548857086,19.353577500843183,2,4022.4776401788786,813134.5614298203,0.417073009586467,1.3915249378987031,1.547585543205617,1.4926570520759,1.048517360487321,1423.281971907868,287713.1622705076,0.06275548937887342,0.06275548937887342,11,2.5481597236363633,28.029756959999997,1.4753099044989646,0.6111982541489682,2.111157942057237,0.3867343428244831,0.9105133761436156,16551.55817578336,463936.15297650854,0.2751633364299026,2.826225752168865,3.474654562808619,3.4286571103189236,0.9319616442494759,11788.046328319459,330416.07361601474,9.57484602061039,2.7977330402074823,2.909090909090909,0.009530476801447625,3505.991430069634,98272.08768869466,0.11254667448178078,0.850625711554866,1.3488755282521019,1.282193647591029,0.9972931546067848,906.7957617986235,25417.264815573464,0.009530476801447625,"CurrentSlice","Yes",1236.8229999542236,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",6,4,"C - 6",1,1,,,,618,0,63,56,192.04030511999997,0.6868850110146993,0.4108186508227585,1.5154153959294605,0.251875019286788,6.80568935231725,1.6211141205275577,24.551905718294044,59.273299862327015,17545.408030385242,3369425.5116100796,0.1710738820604556,8936.396597813315,2992.9595848380286,,,1.7421330171919964,3001.5610640926952,26124,209.29472750949537,444.20572805208894,12.590596389770507,5.172451821899414,-40.48221862335442,53.61070167144769,3,43.13916019783143,1,53.61070167144769,3,49.68042103183863,2,-0.1508312295523383,-0.2686473919489507,0.6326823878475522,7.408278757835236,230.615478515625,315.1365661621094,0.0036545456387102604,2585,0.3269969551595755,12190.523602821486,2341071.8722583996,0.2711024569036037,2553.330083393824,6997.470045353028,,,1.7421330171919964,3304.8808996662756,24919,0.6322069670449193,-0.24927620100627879,0.6403369909578529,7.4010407244834,268.2632751464844,164.41061401367188,0.00797372218221426,2864,0.3269969551595755,1.308220565576139,3.7325967620872964,0.6391593597101143,7.400104157779812,234.2570343017578,205.60655212402344,0.0061612557619810104,2595,543,0,154,93,660.2101862399999,9785.624526515152,44223,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,1.3676228999999998,32.822949599999994,3.1388457216225127,0.6557782587366637,1.707141377134761,0.3458020759273988,0.5459886056158567,13609.21944296059,446694.7238716355,0.18266369682161662,1.7520297036129524,,2.8472218381043986,0.9608473547917136,13609.21944296059,446694.7238716355,16.653183858513103,3.8157272205994572,3.9166666666666665,-0.043200825444115444,3705.5846688034194,121628.2188226673,0.0854521036986635,0.8866045902821239,,1.399512222439836,1.0044049128848302,3705.5846688034194,121628.2188226673,-0.043200825444115444,"CurrentSlice","Yes",1249.9130001068115,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",7,1,"C - 7",1,1,,,,592,0,17,8,10.419984,0.827439996081872,0.4895687900268028,1.3405741755749083,0.3819742486442831,1.4910390223805612,14.054064106495789,5.174877668119315,12.57969765520842,15091.85,157256.83553039999,0.2205869339907523,440.6078680846393,3136.0372351019846,12146.38114598193,1214638.114598193,2.5183942032029543,3329.0649197483353,20234,193.64771999999996,451.98778799999997,2.676371244049072,1.3102678316116332,-1.6608325003657605,69.84284556985561,2,69.84284556985561,2,69.84284556985561,2,69.84284556985561,2,-0.31640406652791725,-1.1372619682027392,10,4.605170185988092,14.614907264709473,223.4409942626953,0.0054885344579815865,161,0.3928567788306813,18033.82,187912.11585888,0.17516050606386413,158.42060440329516,7160.840815573731,12677.482387066095,1267748.2387066095,2.5183942032029543,3158.8130374646344,22241,-1.3249691987696068,0.7137297857126041,10.4,4.577444298765694,12.052631378173828,317.4631652832031,0.0038620273116976023,95,0.3928567788306813,-0.29448959739663977,-1.0760208724566955,10,4.605170185988092,7.446927547454834,1495.284912109375,0.0008084742003120482,179,555,0,88,157,702.3069215999999,11482.175964391692,58688,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42,2.6347673828571425,110.66023007999999,1.9720040171842979,0.587902449544263,1.560167793906294,0.38215300219506354,0.7604449538406922,19874.700051863434,2199338.880510195,0.18444172995610203,1.8729991097882268,3.710501743555552,3.8964062489301208,0.9741868929940874,14518.36243892953,1606605.3278767713,20.175533758539753,3.451069063733047,5.238095238095238,0.0576776422327289,3644.356799184711,403285.3618913924,0.08201312406337931,0.9370796474848526,1.2372756188588623,1.2729983757401642,0.9982747384756043,698.8879451666412,77339.10081227894,0.0576776422327289,"CurrentSlice","Yes",1263.0299999713898,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",7,2,"C - 7",1,1,,,,170,0,25,34,64.81230047999999,0.7825494251355738,0.9489283394621694,1.1886516365584312,0.494146683565421,3.501596319235303,12.207093075490693,12.355272785333394,32.26099531041684,23644.46623794212,1532452.2505027195,0.18739664578400697,4137.843011805177,3196.0594066529734,20427.293262951454,12705776.409555804,2.023264509757431,4430.893664343552,36514,58.47765916398713,448.1097144694533,5.08000626296997,4.820561907577514,111.01433664254513,123.06764512039928,3,108.66592372807865,1,116.68455662260448,2,108.66592372807865,1,-0.21073012885877254,-0.042407390538674594,1.6645816317035598,6.408423632976608,64.91295623779297,568.5303344726562,0.0020852242596447468,988,0.13313594067628304,15494.622186495177,1004242.1089751999,0.3204193522595983,1187.9480269781375,7658.22862595105,10467.503361062802,6510787.090581062,2.023264509757431,4964.776804503985,41341,0.8094325000262985,1.4969538239284814,1.6335645826656051,6.421796247392556,57.23216247558594,276.8104248046875,0.005646575707942247,939,0.13313594067628304,0.9454596061365892,1.0791929074475117,1.6542426153575749,6.412881171115258,39.46712112426758,392.4444580078125,0.004641964565962553,882,0,0,297,319,2256.5517350399996,8324.876893239749,61564,3,2.1881966399999997,6.5645899199999995,1.5462652542857482,0.4250477517296034,1.9201299508420673,0.29689394508014444,0.7780242233016689,12775.016471997604,83862.74435990943,0.21487426698788395,1.7485559880444397,3.387579201773572,3.2013288643229982,1.0561077451624639,9003.882068613257,59106.79346848732,20.1676452963366,30.852514902735567,2,6587.32824198862,43243.10857708981,0.1305720363184466,1.0681582749463538,2.0475517770404394,2.335860054798227,0.9873451370267503,3370.155266997952,22123.68729456966,-0.07533701750763888,-0.07533701750763888,125,1.9797969599999998,247.47461999999996,2.2160414917461835,0.7008999005736207,1.6172979617746355,0.41803363593146037,0.6551647752193658,13790.71946488121,3412853.0590980803,0.20543133722286358,2.0167143952502298,2.7432650676792165,2.660464934942709,0.9593320280410315,8763.600639448834,2168768.738079357,51.772775098956146,3.2531691434670327,3.616,0.05278226253839497,3670.504669188504,908356.7482156507,0.06900225120572377,0.942808834130674,1.1409099534659466,1.2750985001566906,0.9972633996941597,453.331694197836,112188.08875556565,0.05278226253839497,"CurrentSlice","Yes",1276.1029999256134,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",7,3,"C - 7",1,1,,,,0,0,67,17,89.19506304,0.4747394522699963,0.28673000230057266,2.250089916977866,0.12207104539200442,5.6517170796472,3.711350095188706,21.32679773430601,48.590087172482804,23884.7511682243,2130401.8861444797,0.1896515849587743,6279.774296629767,3035.663685043313,21280.673457380926,18216256.479518075,1.6593595897696054,4529.780915399674,30501,11.870064953271026,450.7837892523364,10.865599411010741,3.1154933441162105,3.7469019278434286,65.66622396342608,2,53.4182595569251,1,65.66622396342608,2,53.4182595569251,1,-0.8766570143815168,-0.052598116380794924,1.2037077474015199,6.731216840283613,67.95702362060547,532.21875,0.0023207231424748898,1047,-0.6284592863784133,10959.720794392524,977552.9871566399,0.1272516199315846,1072.8847813130728,6604.789499492531,6201.480432946741,5308467.25060241,1.6593595897696054,1394.6422250843218,21845,1.5175870186935025,5.139601613523576,1.4575508778059219,6.588668936258721,141.8401641845703,131.5742645263672,0.008216091431677341,707,-0.6284592863784133,0.25125108996301354,-0.9877631160056679,1.2310027076600576,6.715021812700437,43.299686431884766,358.0738830566406,0.00494586955755949,961,0,0,275,76,844.2271036799999,8978.277832633918,42506,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,36,1.5224754399999998,54.80911584,2.404695090273,0.6427050015581315,1.4229571843315787,0.46536182895034744,0.5397699537099188,13450.601196457063,737215.5590942577,0.18933398404478002,1.728860748075088,2.8268015431591436,2.7963378574473725,0.9722406098265309,8692.360835011279,476420.61192921223,16.12862206024435,3.2030861804877393,4.055555555555555,0.016664552364405096,3809.101618862549,208773.49187456895,0.0926670968522107,0.9481009099518416,1.4627449876021206,1.3950456255626875,0.9953900714710535,1205.0239080191755,66046.29496459248,0.016664552364405096,"CurrentSlice","Yes",1289.1800000667572,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",7,4,"C - 7",1,1,,,,171,0,42,43,144.83777759999998,0.7694432221998114,0.9660491028520959,1.0840758801627677,0.8002889848394954,4.9989734337928065,4.846725782549423,16.491257756763126,48.635968551823154,18457.29928057554,2673314.20829664,0.17530962437185663,7672.8661943982825,2977.616871972454,15920.125444918463,22128974.368436664,1.687097208433205,3235.742203796637,26744,62.33732460431654,446.936804028777,7.190640781402587,6.946512075805663,69.98894533561686,47.87783856475876,4,40.463391316880745,2,40.463391316880745,2,40.463391316880745,2,-0.29569035554952294,-0.4737016426525238,0.798095336680296,7.162503429714377,153.3820037841797,347.0905456542969,0.0033357369247823954,1822,-0.20827065135841727,11405.778417266187,1651987.5977548799,0.3067139962935577,1711.2897689780643,6760.593497667304,6894.485032513888,9583334.195194304,1.687097208433205,3498.3118791985216,29023,1.156879966460962,0.8135916973674249,0.8498524921070338,7.118356773577958,199.4951629638672,152.83351135253906,0.008985448628664017,1862,-0.20827065135841727,0.9561817998775747,1.3993051689138296,0.7732519020754619,7.185818550901083,91.45294952392578,507.9311218261719,0.00337611953727901,2221,147,0,200,242,1315.73137968,9500.105013067237,51432,1,0.20839967999999998,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,6753,1407.32303904,0.08146439741790819,2.0139497258144483,1.4112779170703318,2.1062993147240108,1,1967.9750815781663,410.1253772488637,13.854932935985826,,,2530,527.2511903999999,0.045277193103644545,1.0519641167971228,0.997172509208374,0.9665708277886089,1,0,0,1,1,75,2.5146894719999997,188.60171039999997,1.9507356138625334,0.6974546118384582,1.9117532861836237,0.39506788061535614,0.8138935051982824,14790.249035761648,2789466.2653865973,0.17381836091343292,1.6413580311935259,3.2784941643900054,2.9657472074656157,0.9699012085683798,10278.95565100935,1938628.6169061088,27.68710004900016,3.733619835385219,4.1066666666666665,0.06651473925938162,3602.8802376288454,679509.3751831586,0.08762884840821651,0.8217705661776536,1.4200368090646713,1.356892203540352,1.002169754725423,1065.7064019717704,200994.05019610582,0.06651473925938162,"CurrentSlice","Yes",1302.2560000419617,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",8,1,"C - 8",1,1,,,,813,0,17,4,5.83519104,0.5534926261298287,0.23466540489608356,2.2779836432873544,0.10364957371108308,1.454497315331441,14.66354886927122,5.174877668119315,11.51003255173614,14691.160714285714,85725.7293672,0.30157164242141665,250.98350726622294,3252.1001637695394,11811.950319275318,661469.2178794178,1.5126156058651066,4430.4374656841355,22290,264.8631642857143,452.4791357142857,2.8277216091156006,0.6635684363365173,-0.4383484623948224,8.55839236822142,1,8.55839236822142,1,73.42045374720733,2,8.55839236822142,1,0.12014571314705819,-1.1879515794553632,17.857142857142858,4.02535169073515,7.0638298988342285,235.01063537597656,0.00593271479010582,94,0.03769762295406323,11809.05357142857,68908.08359087999,0.2610935800406415,65.34249875043339,7807.042004352882,6673.256897831897,373702.38627858623,1.5126156058651066,3083.268073856009,18613,0.8660541803555354,-0.6360875020304277,17.857142857142858,4.02535169073515,8.600000381469727,165,0.007481972686946392,70,0.03769762295406323,2.3198052918148337,4.725537415644753,18.494897959183675,4.00059643428658,13.415094375610352,98.18868255615234,0.01178470067679882,53,674,0,184,97,561.01193856,10138.18777860327,42583,3,1.9103303999999997,5.730991199999999,2.470231272591566,0.6161330024379695,1.6413285420238317,0.18799041881062103,0.6429541994962527,12460.59668109668,71411.56992611427,0.19848398206010207,2.2557761330569797,2.513887195196453,3.134237101772971,0.9792791135558104,7503.891899391899,43004.73844116625,13.713590679285403,14.081328659482041,2,2997.8542568542566,17180.67636491428,0.07548696754253585,1.0476705380731055,1.041207083042444,1.0851835424551117,1.006734395564367,118.64386184386149,679.9469281611858,-0.15500604479802682,-0.15500604479802682,26,2.913587833846153,75.75328368,1.3725540263280798,0.6180695999922707,1.7100390677653163,0.36684914935784285,0.8296559234423284,16158.264793001264,1224041.616640781,0.15679643148266956,2.177991774278211,3.1462041470744975,3.2328850723463605,0.9748768270346075,11022.468119404592,834988.1543030121,18.844112063857047,3.236394586234296,2.5384615384615383,0.12764836399122548,3395.8489454224878,257246.7084970185,0.0697636860298066,1.0129339776731634,1.1794375816742726,1.204915892331241,1.0000891303526647,516.6385504120926,39137.06666939123,0.12764836399122548,"CurrentSlice","Yes",1840.143000125885,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",6,3,"C - 6",1,1,,,,523,0,37,78,246.01582223999998,0.6766515274116421,0.4675854443422126,1.4279250043779386,0.3059815257754941,7.477291049224349,2.1589546923791465,25.76340390554012,67.59334179322947,13195.440067767895,3246287.0380905597,0.19169402424947038,9412.269092801624,3152.086665287932,10509.38467706562,24812657.22255193,1.403390707117908,2529.487008333132,23683,174.54757153748412,440.72850622617534,13.546628366088866,6.3342062438964835,84.37217614841659,34.06444652871947,3,28.128666613686523,2,28.128666613686523,2,28.128666613686523,2,0.3550664471489597,0.09477288966950814,0.5426669902935264,7.588219044447798,327.7048645019531,187.6084442138672,0.0061676958575844765,2914,0.20260066725890127,9991.81363828886,2458144.24789248,0.12833238757559604,2613.4246866458893,7119.766140399121,5547.343806439207,13097278.727002967,1.403390707117908,1282.2733004120123,17302,0.7098291182290124,2.0937756765338724,0.6732658560567287,7.410054738886909,663.0626220703125,108.00594329833984,0.00997600331902504,3195,0.20260066725890127,2.0122727838802685,4.268710484056769,0.5376439569949416,7.668865526423533,169.31671142578125,466.4854736328125,0.006220429204404354,3650,453,0,149,229,1883.4121079999998,9152.789211618257,48154,1,0.20839967999999998,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,6397,1333.1327529599998,0.20007242050143054,0,1.113489224456669,2.0847053963318394,1,651.9960435212661,135.8757668310979,23.85841259625974,,,2523,525.7923926399999,0.12499786936551731,0,0.9392955963355455,0.9362323620573372,1,0,0,1,1,115,2.081278543304348,239.34703247999997,2.06149032837399,0.6851569755254256,1.643569245941371,0.43747978016723843,0.6809077122000414,14582.319521267946,3490234.9040906564,0.17289768146369652,1.2471724004596985,3.28100315065008,3.0207291048095817,0.9720291537678575,10137.849689418292,2426464.2388905575,22.688057357640414,3.2788974206875348,5.043478260869565,0.03499933814837281,3539.5194363144724,847173.4734871512,0.07700683015023228,0.7076847538620937,1.3177388108102481,1.2944553423158989,1.0008805429504866,853.4640456121974,204274.0866456548,0.03499933814837281,"CurrentSlice","Yes",1236.8229999542236,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",6,4,"C - 6",1,1,,,,1299,0,41,27,87.94466495999998,0.8100275483061598,0.7652279466096285,1.1336432624729842,0.6370531236612123,3.983391627139212,11.992138926948115,13.375766343652986,36.93684413802105,11141.295023696683,979817.4580795199,0.12393111323377248,3128.0638345013754,2992.9595848380286,8559.72224853727,7224405.5777654555,1.6677151390748213,1380.7530951526194,14653,425.20753507109,449.3571056872038,6.323491353607177,4.83891230392456,-10.958799399862393,44.685950497382734,2,18.10085500283889,1,56.35878189126443,3,44.685950497382734,2,-0.3661965959076289,0.5200493202841505,1.40383189955302,6.616170642862285,145.4441680908203,128.76161193847656,0.008495460264384747,797,-0.21998341592664408,11669.78672985782,1026295.4841119999,0.2032694100661551,1230.4976293728864,6997.470045353028,7042.50865943919,5943877.308566676,1.6677151390748213,2372.1106641760443,19444,0.6065350188186623,-0.36412073382244037,1.347678623570899,6.6449309537070445,117.1954116821289,149.74575805664062,0.007887329906225204,1003,-0.21998341592664408,1.0077421721157418,0.16394146104795393,1.3055636665843087,6.6718313777848675,75.7515640258789,185.69520568847656,0.008334700018167496,958,1247,0,169,378,2375.3395526399995,8140.0329005088615,50098,1,0.20839967999999998,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,11021.5,2296.8770731199997,0.1619965179418439,0,3.1454142103595792,3.6834310452653503,1,7517.509980593291,1566.646674352448,113.49273915995259,,,2691,560.8035388799999,0.007883018742324945,0,1.0423878133103688,1.0284022804005404,1,109.42722484058777,22.80459864006654,1,1,152,1.9400364947368418,294.88554719999996,1.890595860205967,0.6717618409514353,1.7803251652074976,0.4161566709772817,0.709485816430491,12210.45170791354,3600685.7334472584,0.18395273046218452,1.2231481343380302,2.638797911448805,2.5545818334109773,0.9713500456837472,7583.17363749491,2236168.3076053006,53.23522909607997,3.042888664098251,4.355263157894737,0.057228504553387606,3134.8920985068603,924434.3718811518,0.08144229110328302,0.7623841082961282,1.2143341952904196,1.1839750538764884,1.00287568943508,553.3193233474481,163165.87144164593,0.057228504553387606,"CurrentSlice","Yes",1249.9130001068115,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",7,1,"C - 7",1,1,,,,245,43,3,2,0.41679935999999995,2.156048337810589,0.6123724351851001,1.0799225329435225,0.5454545454545454,0.26765162058168074,4.566536225824436,0.6456,1.55861627586807,6806.75,2837.0490436799996,0.2767968207038257,7.443964290251869,3136.0372351019846,3890.5,15562,2.442171310660374,1884.0867593257658,8777,79.4088,438.7659,0.45650813012123104,0.2795529953241348,0,11.90317403365926,1,11.90317403365926,1,11.90317403365926,1,11.90317403365926,1,0.07115121884151536,-1.9047222284473297,250,1.3862943611198906,3,54.25,0.02088155783712864,8,-0.5402980282505531,17488,7288.987207679999,0.44742782339560566,6.893764340463324,7160.840815573731,11842.85,47371.4,2.442171310660374,7824.617775542351,26360,-0.27191482912957027,-1.015273592297298,250,1.3862943611198906,2,347.5,0.005833645351231098,8,-0.5402980282505531,0.1043252356161136,-1.637582480669451,250,1.3862943611198906,3,77.25,0.013398920185863972,8,238,34,13,14,18.13077216,10315.896551724138,29966,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1263.0299999713898,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",7,2,"C - 7",1,1,,,,1644,93,3,4,0.9377985599999998,1.6646373562696215,0.9247780226994073,0.9997935874360832,0.6820846738246055,0.38629582212460567,3.881939224020483,1.0207832287023528,2.660724413802105,8586,8051.938436159999,0.07874587082775852,23.738410396530252,3196.0594066529734,5853.1260744985675,52678.13467048711,8.387811452912919,676.1120469271347,9548,531.0418666666666,422.3299999999999,0.5587518137454986,0.5167213974952697,70.63510783105056,22.187407275803356,1,22.187407275803356,1,22.187407275803356,1,22.187407275803356,1,-0.13935351578298347,-0.904638222100417,111.1111111111111,2.1972245773362196,5.933333396911621,80.26667022705078,0.012751028873026371,15,0.7402651131405147,64235.77777777778,60240.21990047999,0.021783524996226274,35.27966867846212,7658.22862595105,59053.47691817893,531481.2922636104,8.387811452912919,1399.2816708742585,65535,-0.48890345018518255,-1.4422189300512034,185.18518518518516,1.8310204811135162,4.333333492279053,3937,0.0002543981827329844,15,0.7402651131405147,-0.4045150271341919,-0.9040350858710595,111.1111111111111,2.1972245773362196,6.800000190734863,14.600000381469727,0.07222222536802292,10,1636,84,28,22,49.28652431999999,17297.276955602538,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1.14619824,1.14619824,1.5596762428619322,0.7597782609909874,1.0102191475133357,0.6649822742942975,0.42928699065879256,16349.272727272728,18739.50762528,0.24415747005055685,1.5023829020937207,3.154828939927327,3.154053486004903,0.9674558311377931,11166.971867673874,12799.563500857306,5.094641408666714,,,0.35479710197640074,3043.7272727272725,3488.71484304,0.05892207919697419,1.0266462377800707,1.113745952319701,1.0573619788361703,0.9959311552704321,310.85334722584,356.2995594883667,0.35479710197640074,"CurrentSlice","Yes",1276.1029999256134,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",7,3,"C - 7",1,1,,,,1341,0,21,55,95.44705343999999,0.6028250451836251,0.36805299345966797,1.6646172512482784,0.21424723311256755,5.028616651561127,11.065531386993602,17.62145065538022,44.60571972421894,23067.636462882096,2201737.9302072,0.19909401433848442,6470.9680609780535,3035.663685043313,20409.630294077455,18695221.34937495,1.744662208907634,4592.628344695994,34520,436.3290419213974,445.00164890829694,9.435426612854004,3.4727370094299315,86.34847701612657,67.32645929762091,2,49.21802196783433,1,67.32645929762091,2,67.32645929762091,2,0.04547031176234013,-0.6383766635150727,1.1560610972330811,6.780096166494128,82.45225524902344,542.4951782226562,0.0021782852709293365,1351,0.5758394347942266,11523.126637554586,1099848.48397056,0.20471022122950158,1497.7378410525985,6604.789499492531,6905.19800776457,6325161.375112346,1.744662208907634,2358.901803229362,26129,0.7493023593715891,3.3017785363578556,1.2371045555958124,6.729582015772817,168.00747680664062,145.42376708984375,0.008107740432024002,1338,0.5758394347942266,0.7513578267764199,0.2174225670683252,1.1632119906180278,6.775555901119281,81.72648620605469,354.62384033203125,0.003841748461127281,1393,1332,0,91,422,1436.9157936,7344.716316171139,26129,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13,1.410705526153846,18.33917184,2.9605847143154986,0.7371899560436369,1.8400549509568915,0.34006067041614074,0.5744824908224615,10169.823870614979,186506.147545742,0.12618675721120937,1.6219517968741783,2.2022479526881336,2.114274527778236,0.9829214746216776,5551.895240824963,101817.16085916717,98.08834275260322,2.935372892526609,2.3076923076923075,-0.02980721669744283,2972.257817174051,54508.74686193822,0.07018055575436297,0.9382519442789893,1.118228336735101,1.0885598970004233,0.9991600173085609,314.2516483694103,5763.114980449871,-0.02980721669744283,"CurrentSlice","Yes",1289.1800000667572,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",7,4,"C - 7",1,1,,,,352,0,26,8,17.08877376,0.6096376108115795,0.3251847383413668,1.8074493092821557,0.19129431495060178,2.217167913841368,5.087293374779582,8.095782813292363,18.76828137934035,13816.006097560976,236098.60246799997,0.18371353912429855,724.8809445445377,2977.616871972454,11124.677687482783,1824447.1407471765,1.474563857848871,2538.1873767458155,17082,117.66059999999999,451.9554292682926,4.217299053955077,1.3714012893676757,0,42.31685292406002,2,29.08326570763747,1,54.697477484781515,3,47.9613870936871,2,-0.9122304484046644,-0.42363639809795295,6.32064247471743,5.074507384632981,25.739336013793945,181.4881591796875,0.006606707815080881,211,-0.7139292249510921,9968.926829268292,170356.73521535995,0.11909250635356423,191.47650742550732,6760.593497667304,5188.958106418596,850989.1294526497,1.474563857848871,1187.224481752851,13723,0.7772262768111254,-0.004121553147593993,6.32064247471743,5.074507384632981,30.106060028076172,116.6515121459961,0.00903711374849081,132,-0.7139292249510921,0.5259513283247251,-1.2209005732181366,6.097560975609756,5.099866427824199,7.765799045562744,1034.654296875,0.0024073105305433273,269,313,0,106,95,509.32881791999995,8586.40139116203,49143,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,3.0382479663157893,57.726711359999996,1.2884064980990981,0.6663721229561088,1.7559784557107232,0.3993276149245126,0.8898791889755687,15647.327445488816,903268.7550011389,0.1855207471085536,2.0477537382910582,3.273520885333383,3.1376089451605904,0.9779850535622845,10867.358722639121,627336.8802273667,10.921181353899046,3.8565275151363827,3.473684210526316,0.18144338825939232,3496.2150296869613,201824.99587123303,0.08669520447874919,0.9664731380464026,1.2990666678190281,1.3167206797872875,1.003107309984738,804.8866196087683,46463.457567681486,0.18144338825939232,"CurrentSlice","Yes",1302.2560000419617,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",8,1,"C - 8",1,1,,,,1479,0,95,19,130.7707992,0.363034673485173,0.24323768609301985,2.992580586620033,0.06993688920025631,7.892023724752713,1.7797241182819536,30.514419054604332,67.28004413802105,24054.43426294821,3145617.5928696,0.19732842488811228,6956.90264914792,3252.1001637695394,21342.775389554718,26785183.11389117,1.850807139965302,4746.62362468221,35992,495.27885609561747,450.5819875697211,15.334320043945311,3.729884525299072,4.3088443169712,69.62349003611295,3,56.076529505691454,1,57.57116855573213,2,56.076529505691454,1,-0.13085691586984446,-0.3150963576215684,0.8983984381200298,7.048584548587777,98.7691879272461,588.502685546875,0.0020516098011285067,1681,-0.0012182998649909974,14449.329083665338,1889550.3121747198,0.16179577469321108,1734.444306967931,7807.042004352882,9655.21943094453,12117300.385835385,1.850807139965302,2337.840392888779,25351,1.4454681268197664,2.416816327802735,0.9517309249059538,7.00425369240055,166.2045440673828,237.19317626953125,0.004707426764070988,1320,-0.0012182998649909974,0.6052729293979966,1.1027856181789906,0.8628434469294138,7.077450766483626,87.50554656982422,438.90631103515625,0.003506624372676015,1804,1464,0,200,56,660.4185859199999,11246.060429157464,41523,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,1.848176109473684,35.115346079999995,3.1332061392658335,0.7657733478710543,1.6783411791481253,0.44125043554508797,0.5948232739235733,18645.954470891185,654759.1442372672,0.10937604415044608,2.071073983602568,3.8893466819869285,3.7306127013529053,0.9759858389643639,13851.844818170375,486412.3246365074,15.512376086640673,3.305957180710444,2.8421052631578947,0.1545878990746524,6592.675561346082,231504.08392982592,0.10573327607439562,1.1795404562981093,2.4312333774844292,2.3392146366102247,1.0028678733452896,3881.01668795259,136283.24413971056,0.1545878990746524,"CurrentSlice","Yes",1840.143000125885,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",6,3,"C - 6",1,1,,,,620,0,31,74,142.33698144,0.5533744270448759,0.6999299143768212,1.8622596886472063,0.15824755168981286,6.495148368121787,1.525994921276622,24.349478220282254,56.85311503463579,21817.213762811127,3105396.35042976,0.2017627663035029,8660.003519079351,3152.086665287932,19002.857939517955,25957903.945381526,1.6749694705186844,4401.9014018196285,34500,205.15830483162517,440.7536248901903,10.641975100708008,7.448636721038818,106.50106217444572,52.14819984286361,2,30.610743600120486,1,52.14819984286361,2,52.14819984286361,2,0.04608183169662021,-0.41267065002694325,0.7953027831310063,7.159765490126288,132.49392700195312,493.2496337890625,0.002410036977380514,2059,-0.2545761046643082,11925.390922401171,1697424.1463865598,0.30420034279826735,2488.0795090306387,7119.766140399121,7599.829476618039,10381367.065060241,1.6749694705186844,3627.708006597782,28008,0.8099492617912538,0.5146802730033468,0.8167395158299553,7.14199557625149,172.34068298339844,164.4978485107422,0.008544460870325565,2087,-0.2545761046643082,0.31207289312661796,-0.834883358444503,0.832817065354167,7.178994125471204,50.81895446777344,1216.4151611328125,0.0019196269568055868,2353,584,0,159,182,1549.6600204799997,7041.236686390533,37538,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31,2.3226480464516124,72.00208943999999,1.6278905647310042,0.6621494171021468,2.079449342476741,0.42763182970724567,0.8342295722875626,13907.956536424654,1001401.9304632805,0.1963225898148306,2.148340745995609,3.2152951034791397,2.8810347377679473,0.9639557804794076,9582.395090641521,689952.4683657876,21.634700347014157,4.232647744023768,3.2903225806451615,-0.037166294078003016,4288.382230904827,308772.48094251606,0.0983513889802847,1.0667870576964724,1.5237526809551916,1.5683256974758792,1.0034157254982332,1474.0264076116546,106132.98123777624,-0.037166294078003016,"CurrentSlice","Yes",1236.8229999542236,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",6,4,"C - 6",1,1,,,,1525,0,31,33,78.25407983999999,0.8063537467234893,0.7762562701423653,1.1162137668574281,0.6352340504999168,3.7285267265753275,6.566761878229746,13.02848952718618,34.921719724218946,17457.307589880158,1366105.5419299197,0.1947994422366833,4340.578945083075,2992.9595848380286,14856.69005999968,11157374.23505976,1.9241702331425912,3400.6737814628727,26158,496.47198774966705,448.3876825565912,5.891411540222167,4.5732451480865475,123.21570027220514,72.75473585193642,3,56.299884906589384,1,63.785465449257984,2,63.785465449257984,2,-0.31710975428394206,-0.224557945902641,1.427302433860933,6.571565508288453,86.13851928710938,314.724853515625,0.0038197312969714403,1054,-0.06783884232607997,13464.323568575233,1053638.2515268798,0.3210810006204608,1190.5106204680349,6997.470045353028,8846.560467134841,6643766.910818266,1.9241702331425912,4323.138484075789,35139,1.3907120455392925,3.1870843102478696,1.3918415038271208,6.590024820686853,80.15370178222656,216.7390899658203,0.006588924676179886,1054,-0.06783884232607997,1.1061913092905378,0.4118058472764554,1.3563805737933088,6.608484133085255,53.10517501831055,462.18914794921875,0.004445869009941816,1179,1353,0,211,156,1227.8909145599998,8810.375594025798,42448,3,23.167097759999997,69.50129328,2.887441314998848,0.4750440851957883,1.1208298603049422,0.28627482606752885,1.5326208475185326,17458.14494949495,1213363.6522595992,0.3220934180603294,2.7464398576713447,4.456919310003758,5.834584502990715,1.0252094865170687,13541.056993626116,941120.9734352038,59.61045049073392,8.72236216513345,2,2700.7691919191916,187706.95168916433,0.1063048231112872,1.0321679272871604,1.0385107232755277,1.032135710072546,0.9775012351047639,100.15166203871331,6960.670035832057,-0.3205834345380346,-0.3205834345380346,45,2.787924608,125.45660735999999,2.380542312588098,0.6332282321177034,2.082252039620337,0.3511905143034959,0.8960799209300255,14204.070027488387,1781994.436352555,0.16347734292141322,1.5855615891190136,3.07596334317319,2.971672147820932,0.978848137928783,9586.306926047995,1202665.5440536519,21.301980658601018,3.7079618711443665,3.9555555555555557,0.08145742117643412,3329.759853389127,417740.3745297308,0.07872010920825907,0.9105733369706578,1.280372763442135,1.2575720241503336,0.999701670718341,729.1423235086486,91475.72218998261,0.08145742117643412,"CurrentSlice","Yes",1249.9130001068115,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",7,1,"C - 7",1,1,,,,242,44,76,43,205.06528511999997,0.6404232855531341,0.8797899121580088,1.557390347198215,0.24360294148999884,7.129431126711107,2.5895273465664377,25.53998822239352,63.43332082777824,18106.05030487805,3712922.3681668798,0.1627700215489551,10716.20834527312,3136.0372351019846,15265.29496518938,30042100.4914927,2.7336315114075953,2947.122198291465,27607,89.4103512195122,432.3118682926829,10.705398779296875,9.418501851654051,-20.07632672181008,13.397761054896126,2,11.90317403365926,1,13.397761054896126,2,13.397761054896126,2,-0.6092321769018464,0.6262671036256346,0.6098593760327847,7.451703774606609,286.4779357910156,332.2021789550781,0.003470884170383215,2854,-0.08814983287386215,19575.100101626016,4014173.4835924795,0.5276837857619553,3566.172516984498,7160.840815573731,14071.747682173862,27693199.43851816,2.7336315114075953,10329.462928295252,64423,1.5912507370606632,2.0126734987600488,0.5551217859739572,7.521548131256914,166.56797790527344,505.3531799316406,0.004242679104208946,3310,-0.08814983287386215,0.8498509920735481,0.3387347611581437,0.5515070394606385,7.526917596066464,125.50016021728516,465.6300964355469,0.0041292523965239525,3155,134,3,380,105,1464.21615168,12031.166168516937,64423,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,82,2.5046083492682922,205.37788463999996,1.5134947905884084,0.6643867865411112,1.5596145232983092,0.45166611112620425,0.7411086449102989,16935.17434008538,3478110.281976343,0.20970016594542368,1.9389338480450848,3.0772469304757406,3.3201164773927188,0.9538002260345461,11431.821920633227,2347843.4036408337,34.8798152857807,3.7279426311380264,4.2682926829268295,0.08777254673080462,3695.465373558455,758966.8611818028,0.12492858413091258,0.9198967070573824,1.3008742153639523,1.2908509449997734,1.0094317106014934,854.710033869786,175538.5387367594,0.08777254673080462,"CurrentSlice","Yes",1263.0299999713898,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",7,2,"C - 7",1,1,,,,819,96,89,69,366.99183647999996,0.7120033120626242,0.6074558716354408,1.3815981545331655,0.31873441006950065,8.98316031426599,1.0111328203564107,31.510637495296724,80.48077075894174,21367.686825667235,7841766.629481119,0.18205404002692752,22653.17303909263,3196.0594066529734,18415.388395206544,64858997.92791745,1.8733460691270645,3890.0737126428744,34093,278.52626609880747,410.84603713798975,15.355342236328124,9.3276928024292,-33.144023406560095,92.46727493228362,6,71.86732390146616,1,73.24984524907121,3,71.86732390146616,1,-0.24217404367824988,0.4395999143660547,0.36228834669785537,7.989576929362469,383.8441467285156,467.1101989746094,0.0025439446326345205,5191,-0.1224994361273938,14346.51249290176,5265052.96685328,0.24238275399669784,4983.759905270201,7658.22862595105,8345.42856614693,29392599.409969486,1.8733460691270645,3477.3472082775597,57980,4.452721714090501,36.385960161935685,0.42178296170965274,7.865929529061804,733.5716552734375,226.72801208496094,0.0052428655326366425,5787,-0.1224994361273938,0.6393443086678161,-0.37082545939049094,0.32552744636536274,8.069012752495034,259.5926818847656,283.9229736328125,0.007553068455308676,5804,647,0,563,305,5420.892476159999,10423.48654467169,61616,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,409,2.37596016586797,971.7677078399998,1.9468516379048026,0.6683272697208232,1.7351919988705877,0.42194831078734185,0.7578606459777792,14553.385363028648,14142509.935542554,0.18851366457960347,1.252989152850149,2.4251261173243734,2.8075961911664997,0.963995055503292,8552.301436273818,8310850.363484546,39.96995204596055,3.3700605875451126,4.929095354523227,0.07801716348700645,3418.399234859067,3321889.9889410045,0.07679733990380191,0.7596627825318049,1.1578772659258725,1.1875194639840199,0.9996557747340534,466.10080439837793,452941.7103125918,0.07801716348700645,"CurrentSlice","Yes",1276.1029999256134,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",7,3,"C - 7",1,1,,,,1476,49,32,73,155.04936192,0.5988074684247005,0.6447333465302881,1.7186361969248627,0.19084306774200355,6.512339514244358,0.49623706841864385,24.037223483588946,57.04220689670175,17880.13172043011,2772303.0142982397,0.17692529629338882,7070.375706164274,3035.663685043313,15407.084363863014,22925741.533428166,2.2627996228071074,3163.447602401917,26308,481.47095161290315,425.38987499999996,10.948163726806639,7.058646237945556,75.1721414085165,51.869919798966585,2,49.21802196783433,1,51.869919798966585,2,51.869919798966585,2,-0.17616725824973672,-0.278012515985099,0.7578549543299804,7.221444838714695,184.14479064941406,331.2688293457031,0.0034709337633103132,2072,0.018392295502266853,14945.315188172042,2317261.58361936,0.2615028009494958,2366.5294328142722,6604.789499492531,10414.129732980007,15496225.04267425,2.2627996228071074,3908.2417827800296,32896,1.1823978873960201,2.178832914447373,0.7461122673141404,7.231112978334966,198.01930236816406,248.52813720703125,0.005141867324709892,2435,0.018392295502266853,-0.08435244674557683,-1.1435127751856484,7.91818418314256,6.87217481380449,54.09789276123047,1878.2015380859375,0.0009355858783237636,2421,1464,0,82,168,1045.6453944,10219.836472346786,32896,1,0.20839967999999998,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,9628,2006.4721190399998,0.0871030995520612,2.3733363284020004,2.1789497057718803,2.8177618503102506,1,5209.357396870555,1085.6284145134566,18.22136421760312,,,2529,527.04279072,0.06263025661755106,1.0120840908933793,1.0226249785651398,0.9366749399292538,1,55.95264343290637,11.660512986571788,-1,-1,16,1.3545979199999998,21.673566719999997,2.5998877858500764,0.6623567236875826,1.4958869604268885,0.4060502173588093,0.5243316048752316,18252.50220464532,395596.8243393274,0.09138749963569533,2.4697936516111536,4.028195796693951,3.794638036063065,0.9910150661045962,13721.316749453286,297389.8740555293,15.257512474496451,4.661745213455163,2.25,-0.04134738047883158,4884.930150697256,105873.85954367662,0.08979503419928955,1.1189302377143187,1.9752675328782077,1.7890571372953952,1.0014856900867042,2411.8827941301624,52274.102659400094,-0.04134738047883158,"CurrentSlice","Yes",1289.1800000667572,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",7,4,"C - 7",1,1,,,,1028,18,37,68,201.73089023999998,0.7769584463450541,0.6483222729470911,1.2640846863439603,0.39163201474818776,6.370658816678348,0.2748277118543596,22.394504458013802,57.12053131050386,17885.227272727272,3608002.819872,0.1630765405038749,8798.479441124977,2977.616871972454,15098.19248308326,29230100.647249192,1.5582116329755857,2916.660989761917,26249,337.71382685950414,436.3464006198347,10.691849858093262,6.931764402008056,78.03809743647182,32.64305384068281,4,35.34048215004867,2,35.34048215004867,2,35.34048215004867,2,-0.004666253000048318,0.06982373630842487,0.6056408373744963,7.45280915298589,276.99090576171875,331.7146301269531,0.003396885935217142,2863,-0.05148882032895527,10534.435433884297,2125121.03825328,0.31885239470532845,2061.4630364186423,6760.593497667304,5582.772812525073,10808248.165048542,1.5582116329755857,3358.9299649626737,36352,2.733924826793015,11.484877554533053,0.6515308039068369,7.398901054178506,401.22662353515625,131.31387329101562,0.010268869809806347,3186,-0.05148882032895527,1.3984027268902197,1.0874426410888995,0.5666877262482071,7.5047305849149035,125.35286712646484,653.4928588867188,0.004036315716803074,3157,996,0,110,115,720.5418935999999,10072.797541576283,36942,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26,2.7813341907692304,72.31468896,2.8417956575700365,0.7112369899765371,2.093822315354144,0.3534630182563076,0.8493319745922414,16734.190209081295,1210127.7599671911,0.160097950838859,1.765097794157282,3.3795093665908493,3.3555471420245464,0.9799072529498509,11782.52758772207,852049.8176687405,11.652333484138374,3.1483132006484205,2.076923076923077,0.05846620261357184,5376.5281127378,388801.95815732976,0.14833633379074965,0.8375965436885975,1.9291212771063193,2.0248713798743214,1.0181881781358164,2589.4933230937872,187258.40422352398,0.05846620261357184,"CurrentSlice","Yes",1302.2560000419617,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",8,1,"C - 8",1,1,,,,802,20,4,4,1.14619824,1.4822832322447796,0.9931782037949141,1.0007777903564443,0.8584905660293628,0.4272762676786609,1.539263591080843,1.0207832287023528,3.11723255173614,7440.818181818182,8528.652704159998,0.272418889831584,19.699753652735303,3252.1001637695394,,,0.7405086094014188,2027.0194285295745,10266,259.3844727272727,445.90418181818177,0.5997638367176056,0.5956723700523376,-21.74040855581587,8.55839236822142,1,8.55839236822142,1,63.17366229433284,4,40.198172786622266,2,0.2143705489406143,-1.532191614283701,90.9090909090909,2.3978952727983707,4.047618865966797,63.238094329833984,0.020200522616505623,21,0.7411037230228559,5781.181818181818,6626.380425119999,0.163701469000935,11.035830585641225,7807.042004352882,,,0.7405086094014188,946.3879561978599,6860,-0.2746503468624835,-1.3234239969668573,90.9090909090909,2.3978952727983707,6.800000190734863,35.5,0.030455783009529114,20,0.7411037230228559,1.904248456863044,2.593813076832755,90.9090909090909,2.3978952727983707,5.111111164093018,39.22222137451172,0.03740747272968292,18,802,20,9,6,2.91759552,5769.785714285715,7716,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1840.143000125885,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",8,2,"C - 8",1,1,,,,53,0,17,5,7.398188639999999,0.67024381187561,0.2957137622156028,1.8549487427960185,0.1594932364138809,1.4778783973593796,8.043284462174055,5.174877668119315,11.777448827604209,13210.225352112677,97731.73913183999,0.26153488354063953,335.88207658595104,3191.101726047539,10743.104458551574,762760.4165571617,1.686847147007388,3454.934749010393,19091,19.640788732394363,452.3200901408451,2.834425572967529,0.8381786499023437,-0.8079403602616808,16.924998508238346,1,16.924998508238346,1,50.66904355366315,2,50.66904355366315,2,-0.030861715891968164,-1.1450064698020483,14.4812537195001,4.243154604349486,10.95121955871582,182.90243530273438,0.007225198205560446,123,-0.6106455837013115,13302.098591549297,98411.43468815999,0.09277518015963572,124.6309504157916,7885.7759075256845,8572.695174992135,608661.3574244416,1.686847147007388,1234.1045933322225,16447,0.3529520356841545,-0.3495291852538096,14.084507042253522,4.2626798770413155,16.530864715576172,183.9629669189453,0.005662816110998392,81,-0.6106455837013115,1.2222446128722166,0.33560744922924934,14.4812537195001,4.243154604349486,17.059701919555664,246.97015380859375,0.0041658529080450535,67,41,0,112,58,318.43471103999997,7710.953861256545,31773,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,1.8755971199999997,13.129179839999999,1.4049850163309097,0.7397127105366685,1.4183786730496544,0.4642518840604733,0.6265257456912625,14251.593650793651,187111.736047872,0.18293941689273802,1.8627919239475275,3.0134019865804356,2.8325413514293842,0.9934693579630183,9522.190234236488,125018.54805598255,12.342260953208353,3.75044934137335,2.2857142857142856,-0.08191357898626979,2855.609397546897,37491.809333187266,0.0817866482193101,0.9674281065024829,1.1574663426505376,1.0485740777809693,0.9946486552097714,388.48850398579316,5100.535434602034,-0.08191357898626979,"CurrentSlice","Yes",1853.1760001182556,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",8,3,"C - 8",1,1,,,,75,0,77,29,178.39012608,0.6180687513215837,0.41967085432321494,1.5190799680082314,0.2792165265260391,6.567284052295917,3.124369686978719,24.744257108266556,60.2243255173614,18849.235397196262,3362517.4790174398,0.19191376401268337,10828.7149025309,3288.6715820684826,16260.945143606285,27838738.08585396,1.4546302030830192,3617.4277138370417,36879,35.37903084112149,449.0440254672897,12.111271440124511,5.082747632217407,-3.4061106712076588,34.610944610647564,1,34.610944610647564,1,34.610944610647564,1,34.610944610647564,1,0.7462398228735053,1.8833477161229233,0.6741855183858853,7.345298190637517,185.2747039794922,383.0779724121094,0.0030759810470044613,2257,-0.13035761495803574,10979.938668224298,1958712.6433751998,0.10598225602138649,2210.000657452784,7548.268037438548,6178.800721386535,10578106.835013747,1.4546302030830192,1163.678671034869,15467,0.3261704970073407,1.5637781582792325,0.8795800943313827,7.13608887075255,433.07232666015625,126.21446990966797,0.008393779397010803,1963,-0.13035761495803574,0.7940751258381427,0.4009064506784852,0.6509848021661281,7.368078384668785,154.11282348632812,322.9134521484375,0.003993569873273373,2207,0,0,232,193,2297.1896726399996,8697.860881792616,54431,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,88,1.8732289418181816,164.84414687999998,1.9951383885293559,0.7239667028350966,1.5770362041951507,0.4620609258147588,0.6380012876653158,14101.131079924658,2324488.9229132333,0.19084568665290486,1.5359937195387106,2.9370393511005597,2.872313949404828,0.9605694360629752,9299.993133086895,1533049.4340135674,29.27854825411937,3.198230528113259,3.9545454545454546,0.10550855883304328,3151.0649019510206,519434.60552562674,0.07771748479849228,0.8582898552259394,1.21743104258901,1.1309978060913226,1.0011137269277663,562.7746483610422,92770.10679476798,0.10550855883304328,"CurrentSlice","Yes",1866.2200000286102,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"C",8,4,"C - 8",1,1,,,,22,0,13,11,11.357782559999999,1.0021304061097105,0.926030428528274,1.0443632773749685,0.7316218827602311,1.3739870624281327,0.04093832935056456,4.330816458821593,11.93409765520842,2180.146788990826,24761.63317824,0.033916075246670944,111.31013162209004,3052.7461534225104,0,0,0.5878782493415846,73.9420225442009,2398,9.142051376146789,451.3898972477064,2.016251530265808,1.8671102685928342,-26.651381638963194,10.718072210762166,1,10.718072210762166,1,64.44926578640201,3,44.94901946481021,2,0.18130995337838923,-0.408728417987382,13.214375894284993,4.427381061037154,23.066667556762695,8.333333015441895,0.12962962687015533,30,0.06601219049130676,4316.045871559633,49020.710528159994,0.03260913001412042,106.78674384292363,7341.734239008747,0,0,0.5878782493415846,140.74250097259576,4605,-2.3989220476647892,14.466812044322058,11.699351906405186,4.524326994479305,21.322580337524414,23.25806427001953,0.04435483738780022,31,0.06601219049130676,-0.5657842376855459,0.51298812773735,12.541031899671744,4.444899799614075,24,9,0.1111111119389534,24,22,0,14,11,12.39978096,4323.563025210084,5558,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1879.2160000801086,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",8,2,"C - 8",1,1,,,,301,0,47,11,40.429537919999994,0.46825972973683705,0.25724188449468355,2.3067738897080856,0.11393252529555431,3.852671411333082,2.674252883515736,14.852308281206662,32.93903834487859,17737.126288659794,717103.8198792,0.19497017660660076,2334.7370204267213,3191.101726047539,15061.73992502343,5843955.090909091,1.6967304472480849,3458.2106449935814,26927,104.05058659793812,451.574737113402,7.462516884613037,1.9196719064712522,-2.175918483085737,73.0221302862947,3,59.50728827676659,1,75.86986986449303,4,72.69536249501414,3,0.05838778834118829,0.32591417596692684,2.683600807737273,5.932421950734204,39.64739990234375,322.0077209472656,0.0038224938325583935,519,-0.6668544821046717,13380.036082474227,540948.6761673599,0.10192457193106734,642.8117419736154,7885.7759075256845,8193.959377928772,3179256.2386363633,1.6967304472480849,1363.7544501284208,19317,1.6164316474677118,3.1088071226465503,2.829737485386332,5.895344136932752,56.82352828979492,203.82679748535156,0.005179550964385271,306,-0.6668544821046717,0.2215905596201396,-0.3510109108030286,2.6968859602508237,5.9288490271230705,39.57542037963867,138.25698852539062,0.008826564997434616,358,193,0,231,99,1561.1220028799999,8213.523761847551,35117,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,44,2.0792604436363633,91.48745951999999,2.0174025852395507,0.7123985034062627,1.4027968954961552,0.5019962084074228,0.6241044655121034,15335.170452254299,1402975.785982915,0.1625500234778048,1.4526635178293652,2.9569887461968003,3.047905062519754,0.9644576681684817,10149.093747708845,928514.803408198,14.074933397681278,3.592383861790853,4.909090909090909,0.12977415487441035,3123.9334649171333,285800.7364147795,0.07123163336564999,0.8265882659806888,1.1676569438259035,1.1471021403832578,1.0009477286027098,448.54710128076977,41036.434771237764,0.12977415487441035,"CurrentSlice","Yes",1853.1760001182556,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",8,3,"C - 8",1,1,,,,692,0,19,16,21.360967199999997,0.8202423704193124,0.8055366107738605,1.1357937614103095,0.7502874812957896,1.965034903192252,8.908186726252044,6.407397050284928,18.090238344878596,17657.960975609756,377191.12521887996,0.2591731535718057,1126.2931357189752,3288.6715820684826,14797.072086720867,3033399.777777778,1.6686457480553134,4576.46943169666,26694,226.54733853658536,450.9799434146341,3.0603507247924804,2.465224550628662,37.126894521652936,47.54705828318821,3,26.143824035647487,1,36.07095285763781,2,36.07095285763781,2,-0.2821457311307799,-0.984784578905717,4.925639500297442,5.316247567620751,20.03125,315.7875061035156,0.004370912443846464,320,-0.38335120644010107,12595.38536585366,269049.61367135996,0.15245481369201266,289.2884643448838,7548.268037438548,7531.718699186992,1544002.3333333335,1.6686457480553134,1920.2271293303224,21070,0.79270076720751,1.4961853904373745,5.068411659726354,5.295960333067777,28.35025405883789,180.15228271484375,0.0061015598475933075,197,-0.38335120644010107,0.7508894263634985,-0.6963243009605273,5.068411659726354,5.300170314615851,12.245161056518555,842.880615234375,0.00641227699816227,310,680,0,68,146,522.14539824,9075.667531430852,41601,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,50,1.7443053215999997,87.21526607999999,1.9189346420167817,0.64843820370862,1.484884819223149,0.4164177873871783,0.6065979667439905,13370.097333540925,1166076.5964602702,0.1894687423842803,1.368604835146754,2.6403983938267905,2.7234068571068897,0.968677567478451,8306.430666874257,724447.5607865101,20.256583700534588,3.0515210699664657,4.76,0.02930259755225145,3215.629683735797,280451.9984817637,0.08339921455142563,0.7668497930790993,1.1239967047390933,1.1541717580159987,1.0001284711918894,354.7407948469081,30938.812812003776,0.02930259755225145,"CurrentSlice","Yes",1866.2200000286102,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"C",8,4,"C - 8",1,1,,,,342,0,15,4,5.209992,0.6508299209105255,0.2724104442081714,1.9831743295505577,0.13811583513047387,1.2823572805363013,16.723406523313564,4.530713904011154,10.029740689670176,14254.08,74263.64276736,0.20424483106036967,233.23225336906654,3052.7461534225104,11772.008039702232,588600.4019851116,2.405281834661485,2911.322161520994,18308,112.58618399999999,452.46876,2.4748338117599484,0.6741705780029297,0.19382665722055112,17.949655699638917,1,17.949655699638917,1,64.66518854434885,3,17.949655699638917,1,-0.3944100284477425,-1.043358804297941,20,3.912023005428146,9.658536911010742,200.93902587890625,0.005874893628060818,82,0.19471283790443117,17658.94,92002.93612847998,0.12307249638976248,80.81325550292378,7341.734239008747,12975.108734491314,648755.4367245657,2.405281834661485,2173.329829397032,21745,-0.7476786415452161,0.7054311613166728,20,3.912023005428146,6.490909099578857,319.69091796875,0.0034458229783922434,55,0.19471283790443117,0.9146082336045376,-0.17958114643791934,20,3.912023005428146,5.57446813583374,838.5106201171875,0.002681669546291232,94,239,0,150,128,831.9315225599998,10967.93612224449,57703,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,74,2.38251526054054,176.30612928,1.9174506131017406,0.6949587398872341,1.6479883272113562,0.41418281367783605,0.7273166110121762,16117.820258486465,2841670.5022045174,0.17719572558042787,1.4918130733496549,3.441161592898671,3.246000978938657,0.9662219185651658,11433.98899297778,2015882.3415820373,20.945242860583388,3.1892533527489935,4.594594594594595,0.12377661143465507,3227.3737427592323,569005.7723257865,0.07508177412961291,0.8522977718036576,1.3002740429701538,1.2098180113732737,0.9979970882941971,745.3017824614653,131401.27241126553,0.12377661143465507,"CurrentSlice","Yes",1879.2160000801086,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",8,2,"C - 8",1,1,,,,493,0,30,13,30.843152639999996,0.7405868605687654,0.48214716139629954,1.3815510561435256,0.3585794367530819,2.6041914020392154,6.5134022506284115,9.383435660780117,22.876854620746666,13949.547297297297,430248.0165494399,0.15111466030492762,1353.7890076979322,3191.101726047539,11196.27090222263,3314096.1870578984,1.972388131897996,2107.981101238602,17666,163.55708918918918,451.26894729729725,4.69103505821228,2.2617692373275755,-3.456437341212013,77.00422564493802,5,59.50728827676659,1,69.01373039234302,3,64.54147064846494,2,-0.9456308165842736,0.18356542952846677,3.4925127830533236,5.666942319845684,42.74311828613281,186.7247772216797,0.006078357808291912,327,-0.25334599448784806,15553.81081081081,479728.56097151997,0.3034962397524902,562.3733572541319,7885.7759075256845,10553.867050440536,3123944.646930399,1.972388131897996,4720.523094902711,32370,1.6351379032775712,1.8702264424176525,3.5153396639883128,5.662258892950009,27.038461685180664,331.21795654296875,0.0040882364846765995,312,-0.25334599448784806,0.5357253052800495,-0.6605922566161739,3.4240321402483564,5.68099260053271,34.618797302246094,332.6423034667969,0.0034012957476079464,383,383,0,268,165,2237.1705647999997,8288.173358174197,55856,1,0.20839967999999998,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,18485,3852.2680847999995,0.015377707656856485,4.1145285822257955,4.728756319580167,5.628592350438768,1,14575.938345995983,3037.620887005292,43.63978958342176,,,3060,637.7030207999999,0.05314854891271436,1.1083754942888666,1.1114031288228206,1.1424470210562407,1,306.72360492533426,63.92110111488608,-0.9999940153804722,-0.9999940153804722,68,2.5161196658823526,171.09613728,1.7858237956843244,0.6535000001215368,1.514601116659792,0.4683025225614989,0.7403081678533954,16505.017031169667,2823944.6597737432,0.19797748561922257,1.7745929097668667,3.3010405360934256,3.2804151165389723,0.9517072298332754,11505.073270799394,1968473.5957571517,22.50423238963214,3.6273375610763283,3.9411764705882355,0.059416823788082995,3235.178677694708,553526.5751641826,0.07995453542359016,0.921457827857083,1.1750286616636516,1.1879511607345705,1.0018036262894987,481.9022826200421,82451.61910270408,0.059416823788082995,"CurrentSlice","Yes",1853.1760001182556,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",8,3,"C - 8",1,1,,,,759,0,43,55,204.44008608,0.824631964275016,0.8532927082254288,1.0894841708456249,0.6512896009484637,5.953927547521077,6.145354866679355,19.56338448019667,55.81589296562526,12494.28236493374,2554332.1621948797,0.14325377176121365,7674.4555366074155,3288.6715820684826,9718.111580830626,19066934.921589687,1.4200523519636312,1789.853074226375,18344,251.92565688073392,444.6997767584097,9.058114462280273,7.729223020935058,74.20378878580443,46.972495582770584,4,35.46382247920718,2,39.909961024459086,3,35.46382247920718,2,-0.1965640506044441,-0.17045418916750066,0.6520422170058845,7.3997428036547355,324.76409912109375,164.6414031982422,0.00663942564278841,2111,-0.11006745362621893,10718.935779816513,2191380.1535116797,0.23033017486129634,2321.886469722641,7548.268037438548,5944.503986046373,11663116.820622984,1.4200523519636312,2468.8943524921433,27505,2.4685813549967928,8.73311174503046,0.7019195499401991,7.344740465379345,439.9412536621094,130.9801788330078,0.00919038150459528,2826,-0.11006745362621893,1.386279554536771,1.153547737191575,0.547091995623264,7.532166095095458,98.83393096923828,657.96337890625,0.005588054191321135,3059,728,0,189,330,3440.7829166399997,9156.243541988431,50911,1,0.9377985599999998,0.9377985599999998,1.2760987441597629,0.6861675982658251,1.24112309761711,0.440983005619765,0.43040000000391443,9064.444444444445,8500.6229472,0.15189161298190296,1.9443669843721327,1.7367484203853811,2.589390943374188,0.9749854436600247,3845.240362811792,3606.0608750987753,61.07453470240552,,,2835.5555555555557,2659.1799168,0.05551586554670224,1.023473312291706,1.0213908927334332,1.0452969746410457,1.0140600507725144,59.38477145244087,55.69095315402815,0.4995299401415838,0.4995299401415838,220,1.8784389338181815,413.25656544,1.9337518090590402,0.6866032279748754,1.593313406659025,0.4544582114391839,0.6461217469765745,15454.934043843712,6386852.962060582,0.20463183314950276,1.2941788199834776,3.2370205945783743,3.1480753132252315,0.9608493140305872,10680.502250073572,4413787.677039596,32.1396835422447,3.279123082795974,5.545454545454546,0.05307394210705419,3331.3356428153475,1376696.3260777248,0.07558220122109327,0.7526023749793224,1.199975038240159,1.1957015868017018,0.9980131283611439,555.1648587122327,229425.52276440008,0.05307394210705419,"CurrentSlice","Yes",1866.2200000286102,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"C",8,4,"C - 8",1,1,,,,514,0,61,44,107.63843471999999,0.49067329113361485,0.38290492003785204,2.073278214851773,0.13650903331473419,5.9596748395892085,0.4285111911174825,23.277439034395513,52.50400220711859,26616.378509196515,2864945.32064496,0.22989596131759824,5424.229554998325,3052.7461534225104,,,0.913942578861759,6118.997924164795,39801,175.06790822846077,446.9423802516941,11.130977499389648,4.262106049346923,-37.382569985855675,33.10382908600977,3,15.884787148364596,1,34.18836668317649,3,27.220268968571425,2,-0.6865963658089559,-0.22178038583336113,0.994293821789935,6.921434355803396,82.78947448730469,715.8826293945312,0.0018588892417028546,1653,-0.04405172871010194,6709.923523717328,722245.66518384,0.15691247498047212,1057.429802896913,7341.734239008747,,,0.913942578861759,1052.8707070361766,12259,0.7611528111256926,3.372920295358883,1.316666182483373,6.715548112310055,279.5791931152344,52.12376403808594,0.021972693502902985,1212,-0.04405172871010194,1.011639589168589,0.37951425019806084,1.0823839436073281,6.861701877484699,119.93487548828125,190.2735137939453,0.007213751319795847,1382,508,0,81,65,260.91639935999996,6618.8558306709265,16664,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,0.72939888,0.72939888,1.600212730275371,0.5413479469345945,1.172372873504866,0.34748084319887895,0.3689142857097482,11651.285714285714,8498.43475056,0.16539236556694767,1.7320913391331987,,2.3464763986651436,0.9473320310287665,11651.285714285714,8498.43475056,10.669929674046521,,,0.46490469301606163,6000.857142857143,4377.01847904,0.03376296059024491,0.8149869681996985,,2.249490029282964,0.9968215106108347,6000.857142857143,4377.01847904,0.46490469301606163,"CurrentSlice","Yes",1879.2160000801086,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",3,1,"D - 3",1,1,,,,24,0,30,55,138.37738751999998,0.7418656783132288,0.5563857780562299,1.215118643004309,0.4456839626550624,5.173113335894815,1.0972301761803551,17.69521175911721,48.41443365529544,18000.671686746988,2490885.9216172798,0.1349109779438709,4217.735223334954,3135.2089498039472,15037.80294754146,19970202.31433506,2.005461783129316,2428.4882209055845,24006,12.209278012048191,444.5981765060241,9.041038856506347,5.030305438613891,85.5031548368451,44.115221958372196,3,26.76206491716021,2,26.76206491716021,2,26.76206491716021,2,0.058642456983070884,-0.27121497207112766,0.8754899114530411,7.0832377129584705,168.03785705566406,331.5313415527344,0.003275560913607478,1532,-0.07378811144724526,16161.088102409638,2236329.151092,0.11228742665589823,1505.1349018402348,8058.537060323299,9903.025926243834,13151218.430051811,2.005461783129316,1814.6869949788318,27005,0.8437313051176443,2.699722238055518,0.9015731601103207,7.059877980964193,294.8317565917969,270.53656005859375,0.003908464685082436,1914,-0.07378811144724526,0.9185372146844033,1.1197357202659823,0.8244574684279287,7.1263137437915,106.35566711425781,493.0513610839844,0.0027506081387400627,1791,0,0,78,100,582.0603062399999,14711.30164697458,36631,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,1.86401936,16.77617424,3.7157079940427806,0.7563455755994646,1.777070530949507,0.41881640096647854,0.5993499866195552,20226.99981877198,339331.6733121671,0.1257670842543786,1.297870291490107,3.232150664115754,3.392026762483953,0.9528678753589672,13968.937642606175,234345.33184005602,13.297089255781875,5.607099789675985,2.888888888888889,0.05633562500524277,4883.915343062506,81933.41476862595,0.11898678284903196,0.7009575835963568,1.6483738474260234,1.7270257974194307,1.0102999761286435,1921.046603856979,32227.81254946493,0.05633562500524277,"CurrentSlice","Yes",52.76600003242493,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",3,2,"D - 3",1,1,,,,1592,0,39,18,37.616142239999995,0.42750362101868544,0.5132843380514797,1.6240111361780807,0.4175814152822094,3.11811180167708,1.6746329159836633,12.270646633327845,33.25233600008702,13849.97783933518,520982.73642527993,0.24171660191895197,541.731432179991,3206.892142611451,10948.342264497871,3952351.5574837313,1.318011834600869,3347.7695799768885,18497,519.4021894736842,450.95338836565094,5.553323904418945,2.8504341842651364,-0.42474584526582665,51.22174845421123,3,37.27966644177103,1,50.82162048824907,2,37.27966644177103,1,-0.40309532736430165,-0.9761822958283606,2.846816706440251,5.869677205408784,29.110092163085938,187.6116180419922,0.0068765371106565,327,0.5720823358153633,10759.983379501386,404749.06530335994,0.13504797962787288,418.6427937410613,8163.798758878224,5108.282728742167,1844090.0650759223,1.318011834600869,1453.1140162311538,12561,-0.9734295627483004,-0.13127870895559068,3.169097843018393,5.793815462614304,48.19285583496094,109.84285736083984,0.010145273990929127,280,0.5720823358153633,-0.6679680796760658,-0.7235056800976749,2.9082035895979925,5.856707312812871,38.23369598388672,247.49185180664062,0.004736324772238731,368,1559,0,105,54,339.89987807999995,9442.40404659718,35165,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",65.95300006866455,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",3,3,"D - 3",1,1,,,,187,0,55,77,332.50168943999995,0.7291471197001734,0.9563541197229237,1.1540830625362857,0.5185864934105306,7.8149380461390905,2.4260594461180074,27.790811684439877,75.69972082777824,21629.332811031025,7191789.701127839,0.1866413639697062,19567.821626488865,3185.4647294528772,18708.23078275813,59697964.4277812,1.2150193029522425,4036.9281776055504,31878,68.99604688185521,441.33203860858663,11.29575149230957,10.80273847503662,113.82885137868453,67.62853968435203,4,56.52752767642344,1,62.519965269626184,3,60.686251343839224,2,-0.30859223447734135,-0.19870718246646035,0.38114483100925994,7.9261091298154165,299.1810302734375,480.1164245605469,0.002464782912284136,4209,-0.09380756723427205,10006.944844876214,3327326.0670542396,0.1394953261667912,3341.726767852225,8236.037748998253,3852.550253603934,12293487.859250152,1.2150193029522425,1395.922035069097,23008,1.4589537163961215,8.941090838271537,0.5518301482713299,7.624421703629164,939.3222045898438,107.08868408203125,0.010141538456082344,4488,-0.09380756723427205,1.8586445578641415,5.426578762476257,0.3886086308435046,7.910198868700508,333.9471130371094,347.50494384765625,0.003828234737738967,4747,136,0,151,263,2006.6805187199998,9630.375843805172,48724,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,104,1.933708569230769,201.10569119999997,1.8399881954145627,0.6620447427523423,1.4418018835345836,0.47028044961390625,0.6294460508794781,14990.13596008195,3014601.653434256,0.18478227919118534,1.4757520095174486,2.4356800230748745,2.6279727141536013,0.9647767917778828,8835.741368809671,1776917.8752389026,22.30584531316504,3.463420802432996,5.269230769230769,0.05032586789157854,3588.555193161427,721678.8725300782,0.08889576701872232,0.8164658954990452,1.2284936159121989,1.2636475062417452,0.9968852134261386,667.4531648885318,134228.63006853574,0.05032586789157854,"CurrentSlice","Yes",79.09599995613098,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",3,1,"D - 3",1,1,,,,71,0,62,71,283.73616431999994,0.7248048918343497,0.5610366769094014,1.2299870089289815,0.432516615051886,7.452769263140475,3.1351333051305943,25.799778640910855,70.13773241406315,21568.65442526625,6119807.276168639,0.14408686109281937,14222.180732538187,3135.2089498039472,18681.00664316508,50868381.08933852,1.6190109009420868,3107.7597141323618,29494,32.937691663606316,441.53906970253394,12.999417201232909,7.293149828338622,50.82603605430485,38.58191661240796,3,39.78104567149474,2,38.58191661240796,3,39.78104567149474,2,-0.3385458749040398,0.09006816902758796,0.46003029915186383,7.742415601872801,333.67767333984375,464.8288879394531,0.0023733461275696754,3571,0.17034166067990808,13046.859346309218,3701865.82734432,0.18790292639839254,3140.44619357673,8058.537060323299,6857.3416809395685,18672541.397198446,1.6190109009420868,2451.543051479721,32912,1.1537571840979126,3.432757247278057,0.5102007099652597,7.667277747460171,529.8654174804688,183.3054656982422,0.006287869065999985,4102,0.17034166067990808,1.2133970012544906,1.5814652212289877,0.42847149234988896,7.800396214860039,242.4121856689453,314.8594970703125,0.004750208929181099,3957,65,0,171,228,1303.2273988799998,11690.176221316064,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,60,2.3167097759999997,139.00258656,1.6743942201696196,0.7254816849670902,1.520806717400348,0.49652637336540656,0.7028564555768095,18412.706410575905,2559413.816639944,0.20600063011736242,1.9159288915531711,2.9748208836360535,3.0877734450993413,0.9535953575751194,12223.188745206255,1699054.8515947498,34.9532981452105,3.4295645479346653,4.266666666666667,0.01238263214151597,4019.661635491418,558743.3644293069,0.10181294560075618,0.9303966643669128,1.3920193662145848,1.4214127096309936,1.0042446192491672,1132.013853390251,157352.8536429975,0.01238263214151597,"CurrentSlice","Yes",52.76600003242493,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",3,2,"D - 3",1,1,,,,776,1,26,3,6.043590719999999,0.26704694604677387,0.09833374733668887,5.286084529337999,0.0188390590203783,2.254886326902716,2.1435854911367698,8.076453419663856,16.863924413802103,9085.241379310344,54907.48048895999,0.09202847845873281,151.92768396587448,3206.892142611451,6243.539742405583,362125.3050595238,1.1367806274951935,836.1009405682499,10442,254.6558068965517,452.3485448275862,4.490005110168457,0.44151902804374693,0.3716770936242404,33.959389030042736,2,31.820340169005746,1,31.820340169005746,1,31.820340169005746,1,-0.018777806135632305,-1.111944249838121,17.8359096313912,4.036541383630559,20.295774459838867,88.33802795410156,0.011785732582211494,71,0.16443519497241116,9280.448275862069,56087.231077439996,0.08184549658552849,59.33744962222262,8163.798758878224,3374.289793719212,195708.8080357143,1.1367806274951935,759.5628976742428,11136,0.966588895547116,-0.28268703688674224,17.8359096313912,4.036541383630559,16.512195587158203,93.39024353027344,0.010962345637381077,41,0.16443519497241116,0.9098755907547591,0.054321694883041616,17.8359096313912,4.036541383630559,10.857142448425293,285.83929443359375,0.0036090982612222433,56,594,0,353,46,906.7470076799999,9072.663755458516,26864,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11,2.5576324363636362,28.133956799999996,2.0904593382862715,0.7470579236564074,1.9595228374382165,0.3431963202510216,0.7674911256510186,12833.30812078964,361051.73627138487,0.19502331175350712,1.5045943995986248,2.1728689061749478,2.269871534017871,0.9673875207518221,6927.1496386467825,194888.12868082416,32.7585566808769,3.2228454061249323,2.727272727272727,0.01858295409671289,3461.900995198355,97396.9730447875,0.06684021659822352,0.8972152138300625,1.21824928776447,1.241993626721305,0.9946094904641672,620.1993582935929,17448.661953619663,0.01858295409671289,"CurrentSlice","Yes",65.95300006866455,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",3,3,"D - 3",1,1,,,,594,0,43,52,167.13654336,0.7626779732337787,0.9812120160533225,1.156181418602531,0.5677177546267105,5.545730852508579,6.68648876153895,19.437814173409517,52.4771255173614,16001.1072319202,2674369.7526758397,0.11082285030778938,7679.478428924662,3185.4647294528772,13140.189561459374,21076864.056580838,1.5076384979607038,1773.2883115219784,20847,197.39562119700747,445.6563920199501,7.916507334136963,7.767772121429442,111.87154693851735,34.248221781160574,2,23.751199486110806,1,34.248221781160574,2,34.248221781160574,2,-0.7287922964971777,1.0272393293740976,0.7913508000572135,7.204562672769077,283.0596618652344,259.7580261230469,0.004122419282793999,1810,-0.06168623891206697,12416.967581047382,2075329.0405094398,0.13325234397857813,1963.6778398868926,8236.037748998253,6756.463768471406,10837367.884628136,1.5076384979607038,1654.5900352805788,28003,2.1298506309663243,13.130589503169919,0.847320601240042,7.1536342292303186,387.2801513671875,164.19480895996094,0.006589413620531559,2156,-0.06168623891206697,1.0317718977821841,1.9305704635857008,0.6724149725437031,7.328073176324866,127.1878890991211,441.1781005859375,0.0030790932942181826,2246,530,0,199,449,2062.7400326399998,10326.891998383511,50646,2,5.678891279999999,11.357782559999999,1.335417699359446,0.5510098846122115,1.3509881021951877,0.45496023703094957,0.9741383828450273,11685.05238095238,132716.2841450674,0.13800045140155232,2.3694394035259037,1.8247891555473341,3.2185815563575155,0.9874474178148467,5281.544147998463,59986.630014006994,26.533247040747657,51.057671897774334,1,3009.729761904762,34183.85620007486,0.046327681771278356,1.0773930325270884,1.052015509911534,1.0865655682443698,0.9988720387313272,148.8120914439378,1690.1753769190818,0.5342044418354159,0.5342044418354159,126,2.0856507657142855,262.79199647999997,1.9052064604588768,0.6813960550581234,1.4521206139171228,0.4560128814774221,0.649591459435275,15412.537045858242,4050291.381103048,0.19872622481373026,1.8427066638617922,2.7228207163496854,2.7020253131963976,0.965104782053726,9752.033233282265,2562756.2831135555,43.924354671626375,3.4206752099850313,3.873015873015873,0.06585234534578113,3413.9904951131225,897169.3781745211,0.08301130763621277,0.8755710807282777,1.1933200771077106,1.2021775737778528,0.99866247470638,553.0728246522981,145343.11178921035,0.06585234534578113,"CurrentSlice","Yes",79.09599995613098,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",3,1,"D - 3",1,1,,,,264,0,36,15,38.55394079999999,0.6598755121380898,0.4519114953304378,1.4309616096987428,0.337111109818086,2.963182818645467,5.0923664756282925,11.302610487847486,27.096195310416842,12503.408108108108,482055.65599823993,0.21486807239635553,1428.72597315806,3135.2089498039472,9622.779864293985,3560428.5497887745,1.5980061635871237,2686.5831985741515,18766,90.76263567567567,451.0946789189189,5.400469095611572,2.4405340644836424,-1.1305579233378409,77.88635195575067,5,60.36119248181311,2,80.12549087862337,3,60.36119248181311,2,0.2066038376957925,-0.9022745608663483,2.9072315558802044,5.861048624406707,44.29638671875,158.3831329345703,0.007613259833306074,415,0.07358815268937767,12877.591891891892,496481.91544655996,0.06856436094438055,577.2997888991479,8058.537060323299,6583.065639628766,2435734.2866626433,1.5980061635871237,882.9438585701041,16134,0.35925545149853366,1.7668674517294827,3.0241051862673483,5.831074692274385,66.32307434082031,179.6846160888672,0.00574395339936018,260,0.07358815268937767,0.1935170631321633,-0.7845478488981601,3.2286340394448505,5.783285425731229,62.591835021972656,58.768707275390625,0.017497263848781586,147,156,0,172,77,903.5168126399999,8450.756775458425,26530,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33,1.3293373527272725,43.86813263999999,2.966493145987988,0.7182159512852525,1.4637807950712103,0.4705876094151239,0.4906833278254763,11747.883114271594,515357.6946960825,0.1965128547885632,1.356344390574348,1.866364940498544,1.9700961231610812,0.9733343576194986,5453.356862008467,239228.58215584155,15.040321863233737,3.3024407382779883,4.363636363636363,-0.006902199557927005,3177.475031043321,139389.8961220965,0.061423466624062534,0.8701025563069219,1.103049321920192,1.1236028808449579,0.9989768235388788,296.846787229199,13022.114235928357,-0.006902199557927005,"CurrentSlice","Yes",52.76600003242493,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",3,2,"D - 3",1,1,,,,1460,13,72,31,185.99671439999997,0.7222891490340312,0.44847367657644405,1.4161039063833172,0.29385686223755525,6.474560101028152,1.8664302817223501,23.063828459299636,56.885558069097534,18909.66442577031,3517135.4535998395,0.14990369085961894,8455.700929145127,3206.892142611451,16004.70134390835,28568391.898876403,1.4270675675714035,2834.628490339806,25900,482.8196457142856,443.7776638655462,11.81741266479492,5.299798505401611,4.9133055968130535,27.86402248786855,2,27.86402248786855,2,27.86402248786855,2,27.86402248786855,2,-0.4271410180005998,0.050263081628187045,0.6575179091244341,7.37163018508207,245.11065673828125,362.58892822265625,0.003059929236769676,2440,-0.15949949066031466,11650.29243697479,2166916.11507648,0.1708652511075398,1868.640697039704,8163.798758878224,5747.279595883298,10258894.078651685,1.4270675675714035,1990.6301427199694,24299,1.5535187038990625,4.829657178100888,0.7460238997559808,7.272864337426096,450.5376892089844,147.3738555908203,0.0075563774444162846,2747,-0.15949949066031466,1.0552765763891288,0.6854862466174119,0.6029078297985861,7.436296477582517,102.35443115234375,756.5420532226562,0.0024261593353003263,3033,1371,0,293,94,1131.50606256,11214.542223040795,56666,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,40,2.805580692,112.22322768,1.7165997856940973,0.6821821619381343,1.546723964374278,0.46084240428786527,0.7646702058542482,17085.625370648268,1917404.0260254445,0.17996864379812585,1.528035944474906,2.894390683298778,3.021993573652446,0.9651156883673622,11182.612529556774,1254948.8719616705,24.006643800975933,3.4581354587360082,3.95,0.11001800571721632,3947.7350888772767,443027.57369939965,0.11205172560603316,0.7258468230780711,1.358962223487861,1.4162917504487196,1.0028563605948055,1042.7720070153182,117023.2403616106,0.11001800571721632,"CurrentSlice","Yes",65.95300006866455,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",3,3,"D - 3",1,1,,,,725,0,43,52,142.23278159999998,0.668158971462616,0.978153505539382,1.3054162328259526,0.416772626955771,5.4360621946919006,3.394960678784654,19.437814173409517,51.720758069097535,21651.76336996337,3079590.5306548798,0.19541849245887383,7598.459125909993,3185.4647294528772,18711.730639787744,25541512.32331027,0.8308445890865053,4231.154956834507,35770,242.14067516483513,445.5259586813186,7.771535231781005,7.601754430389404,68.04232484920043,55.53436909454012,4,34.40774379756453,1,55.53436909454012,4,39.57649393688744,2,-0.2670747153237369,0.43977926265806966,0.7980786002764025,7.157590359772205,134.38336181640625,479.1378173828125,0.0025454475544393063,1959,-0.19358823306711018,6842.867399267399,973280.0643177599,0.15653372538811022,1257.2860208725206,8236.037748998253,1305.6607734025774,1782226.9556945183,0.8308445890865053,1071.139526344175,12677,0.3071321961904831,0.9648436261738307,1.0041728723047403,6.982464217313115,382.0278015136719,52.90386962890625,0.021292107179760933,1654,-0.19358823306711018,2.5777520282506625,10.052490183343027,0.8313542379476445,7.127371288153152,145.94717407226562,290.6451110839844,0.0047437530010938644,1685,725,0,55,211,499.22143343999994,7262.082863702776,18016,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34,1.0910336188235292,37.095143039999996,3.400862735154955,0.7077488883718301,1.560165630588023,0.43772898757625134,0.4532195478875863,9782.04870581938,362866.4959666167,0.1762771523156934,1.5525057674908305,1.7666035181216633,1.714924878324742,0.9597851929503541,4244.842079954557,157463.02413812542,35.70223531880253,2.7683345537961195,3.8823529411764706,0.06875794752358,3563.310357138123,132181.50739395214,0.07323595025327083,1.047965817020855,1.211996832744534,1.254757974837262,1.000991582709557,623.2776269624978,23120.572725805614,0.06875794752358,"CurrentSlice","Yes",79.09599995613098,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",3,4,"D - 3",1,1,,,,23,0,10,7,6.2519903999999995,1.0748600762636091,0.7506500335281184,1.0810278237720279,0.6502455868149108,1.037140654491951,0.046676521798248743,3.1792112984197822,8.54944882760421,2278.7,14246.410524479998,0.027725838867319302,58.39077514413837,3040.3936071314115,22.68731165741474,1361.2386994448843,0.6301612914589962,63.17886902696049,2432,8.909279999999999,451.81777999999997,1.6589087385177612,1.245259900188446,-9.258563053933399,25.123194855155848,2,11.160090990878055,1,34.64262918784892,2,11.160090990878055,1,0.09027104180103332,-0.6647501089714289,21.666666666666668,3.900784511676706,17,9,0.1111111119389534,17,-0.15801299596779708,5070.4,31700.092124159997,0.018960078149301625,60.411848419659115,8046.193996239649,0,0,0.6301612914589962,96.13518024821896,5272,-0.40180382879810644,-0.40670352311159075,21.666666666666668,3.932610220091447,30.704917907714844,30.04918098449707,0.03438980132341385,61,-0.15801299596779708,0.08127850746491831,-0.1541945819967765,20.555555555555557,3.932610220091447,18.266666412353516,5.333333492279053,0.21296297013759613,30,23,0,11,8,6.8771894399999995,5067.257575757576,5272,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",92.23600006103516,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",4,1,"D - 4",1,1,,,,0,0,12,5,3.8553940799999995,0.662830380362559,0.4096277651285868,1.6202588109750895,0.2765809966604962,0.9970952370123696,13.901567959701131,3.5654425363480478,8.54944882760421,7555.810810810811,29130.628269599998,0.12110646697986863,88.99412213426152,3077.8961099136577,4838.465223860621,179023.213282843,1.6852113368375201,915.0575524655939,9406,1.3871675675675674,452.3300432432432,1.8453692556381225,0.7559144840240478,-2.477017821161903,140.7677054952182,2,130.82574155285164,1,130.82574155285164,1,130.82574155285164,1,0.11883920909184002,-1.042953236638287,27.027027027027028,3.6109179126442243,11,62.9487190246582,0.016920024529099464,39,0.5719226141168918,14521.837837837838,55987.407630719994,0.06949606003146098,51.38416416583185,8617.220594474296,8296.505591988727,306970.7069035829,1.6852113368375201,1009.2105141455199,16013,-0.3801406119278394,-0.8310406202016929,27.027027027027028,3.6109179126442243,8.3125,216.875,0.004713060799986124,32,0.5719226141168918,0.2949972295756112,-0.3579527553898414,28.487947406866326,3.5734504974788215,11.266666412353516,138.96665954589844,0.007301237899810076,30,0,0,104,103,531.52338384,10486.171142913154,41999,1,399.39798671999995,399.39798671999995,0.2969680968493679,0.5675569532753145,1.435135141220304,0.46733992969824356,9.551231843112546,20017.508739890425,7994952.689862239,0.45742407928395556,6.554742954996022,7.06340530102022,6.214231561918224,0.9165153490501055,17183.534489963247,6863069.080025002,13.173460342130225,,,3172.523871641012,1267099.6471545598,0.13253135963706855,1.1550064460830962,1.1675084269283877,1.1432715576291816,1.0147510140170435,455.1782846908227,181797.29050417757,0.4468322861998784,0.4468322861998784,7,2.1435395657142857,15.004776959999997,1.4221953431292145,0.677773751648074,1.4793924759517159,0.36457178160154363,0.6814206963897197,16478.43295955745,247255.2112084722,0.15888313832890394,1.881504024682311,2.646996547139285,2.668572933708578,0.9593533954593026,10253.100713708338,153845.4893576104,16.44946530899728,4.7750384648694455,4.285714285714286,0.22936665857611183,3079.230520669806,46203.16717107511,0.07745072071897297,1.038295295347347,1.1331758961604061,1.1010405853195404,0.9987072945173127,361.8849337196166,5430.00271564723,0.22936665857611183,"CurrentSlice","Yes",526.1800000667572,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",4,2,"D - 4",1,1,,,,24,0,11,8,6.8771894399999995,0.9128633272113803,0.7837676457813987,1.077663172782261,0.6677873915036345,1.0860681850046665,0.11474950634911721,3.3701309410763254,9.72988137934035,2462.5151515151515,16935.18319584,0.027861661816673426,66.78765464140496,2990.7472178138814,0,0,0.6820357402993779,68.60976436994947,2608,9.336745454545454,451.75859999999994,1.7096083694458006,1.3399357269287109,-11.002564272902514,32.62442566059633,3,11.397971426342378,1,37.79171857676156,2,37.79171857676156,2,0.21056240313977292,-0.3618578826917327,18.824609733700644,4.021619061890681,19,9,0.1111111119389534,19,0.0450569151414793,5494.363636363636,37785.77957951999,0.015149716739692232,65.50859511675667,8055.829499421686,0,0,0.6820357402993779,83.23805275577446,5708,0.2034420541353956,-0.06360233263546,19.28374655647383,4.000614601873713,19,36,0.02777777798473835,19,0.0450569151414793,0.6540588307622873,-0.6423783777607559,15.151515151515152,4.189654742026425,13.8695650100708,17.521739959716797,0.06916062533855438,46,23,0,13,8,8.856986399999998,5503.576470588236,5820,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",539.3359999656677,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",4,3,"D - 4",1,1,,,,234,0,66,43,210.58787663999996,0.7636267513977002,0.996771339004285,1.1777511027611611,0.5053650927096114,6.282804026789157,3.4788957020462026,22.975560699142903,58.86823944843789,13690.17516081148,2882984.91794496,0.1786703273013857,7604.13904350307,3123.0050828077133,10488.54553118185,21197350.51851852,2.099572618102348,2446.028076795488,20411,84.94415714992577,446.9275410192974,8.899582971954345,8.870849235534667,-22.593647213158203,44.34114246589551,4,39.810155675055036,1,44.34114246589551,4,46.20658398514143,2,0.06608838913012072,-0.48367429545922613,0.5995924534103932,7.4706248593301385,246.8658447265625,189.78366088867188,0.005977015942335129,2117,0.10332297256020674,17059.825333993074,3592592.3929348798,0.33902002804091275,3098.6286052217415,8125.379987767327,10951.504346338754,22132990.283950623,2.099572618102348,5783.622463103406,40668,0.9109093272227115,0.8095232013674005,0.5520951337037308,7.532800337204905,157.0603790283203,336.3145751953125,0.004548734985291958,2915,0.10332297256020674,0.16059257267650853,0.007641570742788151,0.5413225457290238,7.546182965149098,103.9324951171875,646.4937133789062,0.0025942891370505095,2696,182,0,242,173,1712.73277008,11856.3154468577,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,97,2.3299943604123707,226.00945295999998,2.0655246413735333,0.6849289126378596,1.6838540300939149,0.423005348308819,0.7257137196253667,16160.014135825062,3652315.954663689,0.17407012890639526,1.3816751537824383,2.645573827650261,2.9146070417847607,0.9664528530205343,10051.693148170742,2271777.6697398494,29.02588691021392,3.480483123386923,4.329896907216495,0.014047619665007671,3752.5175608731124,848104.4411557255,0.08343073551436235,0.8443646315057115,1.172064852894059,1.3546610252634983,1.0032708613195587,550.8879312434829,124505.87998260565,0.014047619665007671,"CurrentSlice","Yes",552.5030000209808,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",4,4,"D - 4",1,1,,,,324,0,34,48,118.26681839999999,0.7041056625310869,0.738063577522044,1.2110067495708992,0.477917868988047,4.774356107562498,2.18053631793303,17.056551623349897,45.94280110355929,19987.95066079295,2363911.33098816,0.1987502008878866,6657.08768576976,3007.7366811354677,17384.55826079295,19731473.626,2.2213100352778983,3972.6092091697647,28727,110.39134308370043,446.1078935682819,7.682816457366942,5.670406999969482,76.09239549202579,66.8193801726274,6,57.641487247948945,1,62.17845995298522,4,59.423305652799925,3,-0.33002906114285113,-0.6782571340901096,0.9509208406916494,6.980945503646178,109.39329528808594,408.1012268066406,0.0029301573522388935,1551,0.4151444581167701,17578.262555066078,2078925.1853875197,0.18842062102782342,1793.1401457283455,7913.466502152159,11936.977755066076,13548469.751999997,2.2213100352778983,3312.1071472156846,32411,0.6547251312190701,1.571020870672788,0.9990490791593083,6.94384235036216,148.56396484375,330.02581787109375,0.0035526028368622065,1665,0.4151444581167701,0.8376579064258429,0.7406119821200887,0.9400531739408877,6.98873494356731,66.86389923095703,463.2897033691406,0.004766360390931368,1543,289,0,130,113,886.7406383999999,11986.965569917744,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,22,2.372914538181818,52.20411984,2.5377979297315467,0.7382152925809244,2.1171703333513032,0.2799954802431762,0.8103183352966792,25165.680836338026,1313752.2182353816,0.18606802940613673,1.9418455674042823,4.460983929820034,4.410855931559973,0.9481199715826173,19524.396036338025,1019253.910484611,17.11934348339001,3.929136253971468,4.545454545454546,-0.01963213610230146,3695.9716203341827,192944.94539316464,0.10105653033850741,0.8219189513972793,1.4196751977666457,1.3691029387295333,1.011279707409226,1092.5792203341825,57037.13655301942,-0.01963213610230146,"CurrentSlice","Yes",565.6360001564026,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",5,1,"D - 5",1,1,,,,0,0,16,30,33.13554911999999,0.6561215686562875,0.6605971100865947,1.4441413913800099,0.3455584845536914,2.7597010080929176,7.924507568684941,9.96506134050363,25.191838344878594,13960.25786163522,462580.81010207994,0.2691061911049294,1338.888625302282,3133.0085551150823,11225.019410022316,3569556.1723870966,1.2402485435585542,3756.7918199873,21564,1.8190490566037734,449.19041132075466,4.605280841445922,3.042235214996338,103.29029236477975,114.43395062370388,3,105.05729285405225,1,107.9728379316696,2,105.05729285405225,1,0.2920352049935882,-0.9859696731004481,3.223764882718247,5.74461371786043,29.92348289489746,204.36412048339844,0.006461490876972675,379,0.33088188294011134,10473.874213836478,347057.57348927995,0.10687712148620267,386.70348955547126,8444.980055194872,4535.2409235138975,1442206.6136774195,1.2402485435585542,1119.4175267834066,13099,0.14155246552879042,-0.3482348715264276,3.6786519520588588,5.6584939406629235,40.691490173339844,115.93617248535156,0.009145553223788738,188,0.33088188294011134,-0.07099315327013132,-0.439738945115562,3.2830979787191965,5.73153546917062,42.85551452636719,654.5323486328125,0.0015550050884485245,263,0,0,33,210,410.44316975999993,8763.265803503427,17158,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",684.2430000305176,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",5,2,"D - 5",1,1,,,,1230,0,44,44,129.93720047999997,0.727039555773338,0.6183766553575154,1.2253428735289376,0.48823881648510126,5.033912016302517,8.066809577241969,18.716833655295435,47.39064993116351,18864.943063352046,2451257.8888665596,0.14238422056529945,7194.186795858045,3158.561733357185,16036.469157571893,19997477.039492153,2.1675927639631656,2686.0702140841336,26078,402.62427233360063,446.91957690457093,8.562083937835693,5.29459282836914,127.69538937174731,81.69937451054278,6,62.94540570878331,1,68.05798925838664,3,65.39964591965231,2,-0.7288930661283317,0.5641808036731075,0.9421167337295154,7.01147284378915,167.38975524902344,352.7932434082031,0.003172870259732008,1601,-0.2231633107550562,17993.516439454692,2338027.1529336,0.23535013396219714,2094.7593836650635,8301.151737818063,12023.887772565282,14993788.052388906,2.1675927639631656,4234.776504476658,34286,0.5994136517498054,0.15827054264918416,0.8675190947447893,7.073183259246673,118.76618957519531,352.9100341796875,0.0035296876449137926,1745,-0.2231633107550562,0.08594831851618902,-0.461493265230704,0.8276479428736425,7.106261874130399,59.014793395996094,848.5670776367188,0.002253605518490076,2028,1069,0,304,319,2810.99908368,11048.062423545984,65535,5,2.604996,13.02498,1.394612934264653,0.724542108667666,1.5752170727195525,0.45013898730873425,0.7255361291760376,12084.168644688645,157396.0549136967,0.2215965912986649,2.5148840612587513,2.014797473312541,3.6039629363587844,1.0284189425236903,6086.459790695995,79276.01704461951,48.146692293779076,27.422788921459706,1.6,3007.7216483516486,39175.514315347245,0.07084837007612352,1.0435139390392014,1.0633725989853369,1.0981667618866093,0.9974583562693145,179.2477425714951,2334.698262038872,0.131022485137739,0.131022485137739,189,2.083445478095238,393.77119536,2.050674040992499,0.6740807277243281,1.7325161019432826,0.41029421839472213,0.7093381576484692,16273.645517892517,6408092.848445442,0.20362618030548219,1.4934185773197555,2.7260733331964877,2.745153971296392,0.9588983514938458,10304.016851003107,4057425.0324290763,48.008472131735786,3.1782269291279244,4.560846560846561,0.03466125023877334,3348.0323215154654,1318358.6893470604,0.0780019299051394,0.8395106245134452,1.1836886013597523,1.20414325656068,1.001661479048512,519.5584157353119,204587.1384234416,0.03466125023877334,"CurrentSlice","Yes",697.3500001430511,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",5,3,"D - 5",1,1,,,,651,16,69,64,293.00995007999995,0.8068131384761553,0.5352323157872348,1.2123480741154906,0.4367041394231439,7.519083613887473,9.454686008973587,25.914628471193637,67.55533241406316,24669.0320056899,7228271.836509119,0.16316885008895837,20838.40208233693,3050.662792175738,21881.471219922663,61530697.07042253,1.6246272166233615,4025.2175851761313,46474,221.1419918918919,437.569060455192,13.25837238922119,7.096309357452392,-42.4840598950206,57.63657605835564,3,48.160897232260524,1,60.1490954310936,3,52.055092092412785,2,0.27267922729812016,3.417558998604882,0.443891147267654,7.7804042172430625,351.4058837890625,618.3552856445312,0.001848476123996079,4287,0.11447882607300085,13017.987553342817,3814399.8831470395,0.19554658139821474,4029.7586673500896,8012.907465873623,7422.342878274865,20871628.17370892,1.6246272166233615,2545.6229627406974,31034,1.1029896878695304,3.0768550280936475,0.48006005556353687,7.720053803184063,549.40966796875,182.75082397460938,0.0063021196983754635,4511,0.11447882607300085,0.4661897749180761,-0.9517556879184905,7.392874269792739,7.43785908040727,114.74662017822266,1537.77392578125,0.0010269137565046549,4586,220,0,585,488,3317.0977065599996,9431.55911918075,34202,11,2.462905309090909,27.091958399999996,3.923713777252713,0.634369221813255,2.210761298575848,0.1958379902509767,0.7943903192338434,23122.484659283502,626433.3924939467,0.1380345060491475,2.546826663207787,4.310821055042317,7.336206831641858,0.9948991053850349,17758.66083916984,481116.90069449827,148.75066326620004,6.830272411792665,1.8181818181818181,3008.0002664263884,81492.61808521263,0.0681024726017217,0.8803265272990487,1.0790797035833897,1.1058292194946786,1.000244975913072,220.43948065915356,5972.1372397353925,0.042544538446289554,0.042544538446289554,124,2.39995760516129,297.59474303999997,2.0195053289526523,0.6468767762820233,1.7881800797681968,0.40955857102696497,0.7744568549814189,14613.366865675267,4348861.157339881,0.13876838422250307,1.619710744108976,2.61156090392709,2.5576202624298916,0.9776830387034319,9017.722190607315,2683626.7181198895,78.23766117296856,3.5720932411303696,3.935483870967742,0.11134600512883372,3792.9958704986693,1128775.6314328325,0.09849485832634973,0.912948016608485,1.360686335474727,1.3895196704863728,1.0028322338937155,1005.4350847314345,299212.19568405184,0.11134600512883372,"CurrentSlice","Yes",710.4460000991821,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",3,4,"D - 3",1,1,,,,1194,0,48,55,158.80055615999999,0.6783443213201629,0.6921119757456884,1.3517817727410937,0.36372405740439695,5.845065403397875,7.639263881879615,21.375600538932233,54.238272000174035,19419.13779527559,3083769.88203744,0.2283361215802231,8920.378412719523,3040.3936071314115,16560.520549742563,25238233.317807667,1.7783023406451473,4434.090608605153,37194,391.9154196850393,445.2130039370078,9.614157730865477,6.65407370223999,120.90964596288785,38.7923687317341,3,26.165788518998337,1,35.66763186829754,2,35.66763186829754,2,0.6940663854142587,0.8345762400700583,0.7267792313362404,7.254503094769013,140.13720703125,403.5833435058594,0.00307465810328722,2172,0.013876517541358317,14308.5656167979,2272208.17779936,0.21857504387497284,2267.500315547876,8046.193996239649,8525.568527859934,12992966.43645854,1.7783023406451473,3127.4953574795286,28987,0.534414489706256,0.702318931271352,0.7534737291696805,7.229702013475977,197.89227294921875,223.8024139404297,0.0054482570849359035,2237,0.013876517541358317,1.140006421674399,0.446591727534972,0.6983625078361267,7.285087583046119,74.41534423828125,644.6351318359375,0.005881789606064558,2398,1046,0,218,355,1579.46117472,10088.576923076924,51691,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,114,1.775053414736842,202.35608927999996,2.2170254655704444,0.718778462843397,1.4513049868526584,0.45869496983425884,0.5916524561475682,16004.998307661077,3238708.8664713134,0.21541685279583742,1.7909281281782854,2.7675957745640782,2.7818624022554945,0.9659740748208642,10222.001218723111,2068484.1912362026,59.46482972331962,3.1680351719887105,4.087719298245614,0.08223823929534146,3534.497021166946,715226.9947751524,0.08282476067959817,0.9001102491506736,1.236435912044564,1.2923499941778736,0.998964057076468,675.8797756339204,136768.38822072395,0.08223823929534146,"CurrentSlice","Yes",92.23600006103516,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",4,1,"D - 4",1,1,,,,976,1,60,65,227.67665039999997,0.6964915339509838,0.43168865212924257,1.3864258346353437,0.3099165134573564,7.087901057267035,2.0808007981606966,26.32948035036012,64.09235917265684,16206.060411899314,3689741.5507612797,0.23248495843237132,9713.652784564052,3077.8961099136577,13331.488260937302,29129301.850148004,1.9753476449515333,3767.6652812129105,27430,324.589213180778,442.4084062242562,13.014723307800292,5.618308362579345,133.4064557855244,91.3616207774272,5,80.56069367127483,1,92.8407918064797,3,80.56069367127483,1,0.008650554026795662,-0.42398177545073823,0.5355843094952584,7.575790424368492,233.64947509765625,280.8256530761719,0.00455588661134243,3218,0.45252837701727255,17022.006407322653,3875513.4019065597,0.2664193161602457,2896.556806654214,8617.220594474296,10700.382209000009,23380335.12666502,1.9753476449515333,4534.991306714222,38598,0.5204338285935064,0.3191230842321491,0.521760076242741,7.595063687058359,228.2954864501953,316.55926513671875,0.004191034939140081,3594,0.45252837701727255,1.1438209802558992,1.3761374955294432,0.4941116097377062,7.63496309060396,123.49779510498047,549.4467163085938,0.004016381222754717,3624,900,0,157,154,875.7996551999998,13927.503152885187,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26,2.5368653353846153,65.95849872,2.4432906841129363,0.6564555340451365,1.7640183969625862,0.3666331041473958,0.7705508821880498,25776.07587375473,1700151.267525674,0.20474963005540392,2.700525556811975,4.07744514148659,4.174264542189082,0.9683006690766885,19454.451675432087,1283186.4259322889,27.602437999477402,3.940917616074269,3.076923076923077,0.16111812955571933,3828.9514528544314,252551.88950204113,0.10490186242515144,1.0460192864015574,1.332007426417536,1.3691183302164411,1.0093898170952555,954.3793018924184,62949.425962265566,0.16111812955571933,"CurrentSlice","Yes",526.1800000667572,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",4,2,"D - 4",1,1,,,,753,8,87,40,290.61335375999994,0.7389506371633036,0.4702163220730812,1.3571785215921086,0.3266635036548924,7.922939549042996,4.731958319996292,27.986964774337356,70.29994758637193,24821.634277518824,7213498.383193919,0.18766831509774848,17770.373321135037,2990.7472178138814,21819.938300880276,60855807.92115509,1.8423292276606043,4658.234282834477,37344,256.88213352456074,444.11122610254563,14.340092990112304,6.742945783996581,-4.671309011431388,51.34564873371214,3,44.44471370131117,1,72.83779665376463,3,48.24167548748663,2,-0.17300628701483636,-0.2187255337595846,0.41948848630735847,7.821337264811903,253.13661193847656,626.0791625976562,0.0018859809497371316,4231,-0.1251539141643018,14841.490139835067,4313135.22433344,0.23062338348692496,3288.058777579944,8055.829499421686,8551.233812774717,23849391.103828687,1.8423292276606043,3422.794672036598,34515,1.098308860701895,2.7307053285292486,0.45394233685298274,7.759307432900855,430.03668212890625,241.2490234375,0.005039308685809374,4578,-0.1251539141643018,0.934608950146705,0.20890327426641875,0.39351953925431327,7.8680046444970415,132.8600616455078,586.208984375,0.0053446367383003235,4345,691,0,682,96,2170.6910668799997,12890.444556451614,61157,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,58,3.3308017820689653,193.18650336,1.5758005858652235,0.655796351171212,1.876753201814243,0.35637708933140605,0.913863173388779,21050.779640697638,4066726.511788253,0.15021762711838915,1.5618375693568292,3.3465694474386196,3.563760177432099,0.9743931553665578,14760.523313637288,2851533.886725348,27.13080710297539,3.5087596253016637,3.3793103448275863,0.09656631205734484,4140.148503212566,799820.8127267732,0.11106997445403428,0.8055989818130228,1.379269764637829,1.5247498295581374,1.0112046510654908,1138.4525265740194,219933.66285019228,0.09656631205734484,"CurrentSlice","Yes",539.3359999656677,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",4,3,"D - 4",1,1,,,,388,0,83,58,313.95411792,0.7270205459226706,0.6294808935779141,1.2657024090939752,0.40466223523202094,7.952596766104441,1.0944447502384391,30.008249153857676,73.66559172439298,20033.00564221706,6289444.61568864,0.1578713780039888,17688.33936568053,3123.0050828077133,17258.683031053388,52000411.972563855,1.1841957143906545,3162.63820629849,31695,137.48655174244936,444.4029275804846,13.460564456176757,8.473168141937256,-34.14508753003137,60.162909011473204,5,47.03362560568277,1,60.162909011473204,5,49.818318950455286,2,-0.27679918671487996,0.5456282293739809,0.426627880578121,7.8266138249865955,350.7122497558594,412.0027770996094,0.002754969522356987,3941,-0.18076269473116724,9622.040159309658,3020879.1308068796,0.17757002085976029,3158.0294096844777,8125.379987767327,4343.056242564151,13085628.458845787,1.1841957143906545,1708.585871802067,21001,1.2125100723177804,3.559034859019942,0.5292917547580355,7.656300208275731,689.5841064453125,101.58560180664062,0.011208252981305122,3972,-0.18076269473116724,0.8519385232591405,0.38204541551456694,0.38300674948880115,7.945295837388118,127.04317474365234,1046.4881591796875,0.0016789904329925776,4679,311,0,278,130,2380.966344,9238.424026258206,40756,1,0.8335987199999999,0.8335987199999999,1.8288145488861383,0.7905694588834643,0.9572039119652381,0.7692307692307692,0.35636155095632865,10195.125,8498.64315024,0.13285475599618202,2.0615736256687796,2.09862802126078,3.484317913232138,0.9459250100365338,5337.129730368969,4449.024511709517,31.472654092754738,,,2688.875,2241.44275824,0.1118478908775537,0.9793583009899061,0.9692005497775075,0.9809842606543351,0.9659828185698668,0,0,0.576975710792032,0.576975710792032,147,1.9330133583673466,284.15296367999997,2.1473982863096674,0.6977989759943015,1.5741753769238673,0.4502832505619773,0.638457354134832,13326.578955873485,3786786.9060269706,0.16770856540067636,1.1366000118243114,2.5244590940313607,2.4035709709919986,0.9735804837626247,8047.595039127978,2286747.9808646804,24.216487033672216,3.121803606427055,5.115646258503402,0.09716575425968,3483.656378927477,989891.2845149796,0.07728916783722997,0.7127875285080909,1.2556781842564015,1.2576019819732953,1.0004540916905336,709.333767763806,201559.2923483863,0.09716575425968,"CurrentSlice","Yes",552.5030000209808,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",4,4,"D - 4",1,1,,,,498,0,38,17,44.59753152,0.6126162281193276,0.698352932671454,1.5377335505799863,0.3062340909026482,3.3037410825808546,7.8672629152478555,12.556048658714252,30.245870896614733,20604.84813084112,918925.3639799999,0.21257303639544226,2917.319085657756,3007.7366811354677,17949.737206471375,7682487.524369748,1.701430122527477,4380.03513163985,27095,168.0754738317757,450.7856747663551,5.416598382568359,3.782697365570068,15.05958118253562,63.662889469665416,4,50.097239613545064,1,58.50354459994857,3,53.98536365044854,2,-0.6963884654307172,-0.4756925478998366,2.4019565027513323,6.039689162481986,41.29570770263672,401.4769592285156,0.0031893071718513966,629,0.10523018442166057,13464.210280373833,600470.5423708799,0.10814580572771641,652.7052878075482,7913.466502152159,7636.556162726773,3268446.037647059,1.701430122527477,1456.0978692584306,20985,1.4116641115897284,4.925525992755956,2.6639881212332956,5.968002419456726,57.845237731933594,200.86012268066406,0.005331666208803654,336,0.10523018442166057,1.9565709875970902,4.69695871822211,2.642152153026465,5.9704475042406715,44.378841400146484,147.8634796142578,0.00794085580855608,293,477,0,160,168,963.6401203199999,9043.441392733564,49364,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,34,2.3904669176470588,81.27587519999999,1.672991416205182,0.7302102451758556,1.4757627624972722,0.48832622294599753,0.7136345144896915,15300.072350606928,1243526.7709188992,0.15978015221665162,1.8069466126275724,2.625425607239779,2.681684446364121,0.974709958027523,9472.41823295987,769879.0821442507,25.416460223969068,3.476222278174323,4.294117647058823,0.17964144074973143,3121.666131668559,253716.14693356052,0.0772513644251953,0.996605403306494,1.1757196669323933,1.1563623083808858,0.9976840749832154,466.5552072988112,37919.6828023283,0.17964144074973143,"CurrentSlice","Yes",565.6360001564026,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",5,1,"D - 5",1,1,,,,823,0,31,31,77.42048111999999,0.8028490950451448,0.9821194083878795,1.0288816321993324,0.9426710715940545,3.560579787880334,0.46386520695610556,11.293387629936376,34.81095227595509,57916.99596231494,4483961.69242752,0.1446005653226114,3489.1627423593195,3133.0085551150823,54448.88485120383,40455521.44444445,2.7209136979590767,8374.830357938143,65535,270.7153728129206,448.55558115746965,5.080480038070679,4.989638049316406,107.91945112149918,19.979204587607345,2,19.979204587607345,2,19.979204587607345,2,19.979204587607345,2,-0.9998082240938522,-0.04803930323025618,38.672291771201465,5.398920230220169,35.54338073730469,2885.09130859375,0.00038401602068915963,876,0.5092850565103856,22978.061911170927,1778972.6083679998,0.2354929737421372,1576.3588861349906,8444.980055194872,16571.77302228204,12312827.355555555,2.7209136979590767,5411.172130292578,37417,-0.29024014325817504,-0.45954500004243215,1.4002380223494655,6.582708944560561,59.21155548095703,545.4853515625,0.0023843422532081604,1125,0.5092850565103856,-0.281458605877207,-0.9088243714178827,1.4255980900246175,6.569648297820534,82.75918579101562,527.3765258789062,0.002064029686152935,980,793,0,81,36,234.44963999999996,14841.871555555555,37417,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,5.053692239999999,10.107384479999999,0.9994182399226167,0.7319343359065298,1.3648094655107916,0.5763869362048495,0.9854240787270506,23593.4091954023,238467.6579318985,0.18988926116562288,1.8272088756875546,3.682851273897883,3.9656738673227996,0.9825604654548221,17187.12030651341,173716.8330419465,6.670452205586431,3.47869649402186,1,0.47798388477604276,16715.566091954024,168950.65329223033,0.42698851004893035,0.7525220089677731,4.819789665446647,5.9817128826043895,1.0150284984873847,13247.454980842913,133897.12087287035,0.47798388477604276,"CurrentSlice","Yes",684.2430000305176,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",5,2,"D - 5",1,1,,,,363,9,106,90,778.8938039999999,0.884371319299177,0.8782301827021011,1.0149247774143304,0.8573187489241267,11.216725567831071,2.2129932726908392,34.193952749572546,105.20266262100772,64943.02702341137,50583721.36153968,0.03382619243099318,53284.74865236304,3158.561733357185,61569.043436012995,460228599.6841971,3.1183810147695508,2196.775329145103,65535,134.18724746488294,435.6057527759197,16.855953909301757,14.803407481384276,6.297031721875954,22.42495010497516,1,22.42495010497516,1,50.48210175226194,2,50.48210175226194,2,-4.472222387524466,21.08297006179654,379.5551101218107,2.6134449299802047,113.35708618164062,3500.39453125,0.0002922310959547758,1333,0.3466900116714875,25886.15397993311,20162564.94435984,0.3243474252604724,19586.198767340822,8301.151737818063,19948.450016518476,149114663.8734756,3.1183810147695508,8396.107393287435,57167,0.24277338560968165,-0.18648018068662964,0.16867820270466774,8.749565042250536,444.76153564453125,746.3477783203125,0.0021315496414899826,12672,0.3466900116714875,0.37307045545263734,0.07554138964724588,0.16273643471549534,8.776309958148657,332.951416015625,717.229248046875,0.00491652637720108,11772,160,0,351,290,2995.4328004799995,14041.55668417574,63493,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,96,2.4877711799999997,238.82603327999996,2.784841545086533,0.7050354915219343,1.8395615400563103,0.39782986440231927,0.7509078204285714,14627.67799243879,3493470.31103131,0.15908806787375365,1.6680613495976828,2.4635242987133963,2.467500492599423,0.9733742399195856,8689.974029024157,2075392.0266580589,52.612685132998735,3.5432777248088208,3.9583333333333335,0.0719845987981552,6347.295153875656,1515899.32365749,0.0678084243739155,0.9326996424169484,1.8812466004821193,2.2828491253871994,1.0037543798498807,2973.311566477282,710104.2071273123,0.0719845987981552,"CurrentSlice","Yes",697.3500001430511,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",5,3,"D - 5",1,1,,,,178,23,62,37,165.46934592,0.7461345103114652,0.9467495510996191,1.3087917692441577,0.3585206165447563,5.8708924270561065,3.5753730434351936,21.280331403434484,52.79042317256983,22927.70717884131,3793832.7103281594,0.24086489515187515,11726.897256557011,3050.662792175738,20349.197916463403,32314526.291343883,1.5431060979371833,5522.479785704507,37980,67.47902267002519,439.52939924433247,8.526622533416747,8.072576055908202,-21.277848283404435,64.12312223142277,4,39.206466810143866,1,66.36332526207049,3,53.44018899720775,2,-0.161531146694326,-0.40483772558069564,0.6899986675887799,7.3049710202640075,131.07522583007812,546.1039428710938,0.0024285591207444668,2579,-0.05462204976250033,12364.76637279597,2045989.8041601598,0.24022484186197343,2171.0976322030274,8012.907465873623,7178.207598797991,11398993.66689121,1.5431060979371833,2970.324046565159,38774,1.4024811226400085,7.412197891908619,0.7463089036793584,7.246250225342483,283.9609375,168.7960205078125,0.007386866025626659,2662,-0.05462204976250033,1.059064975562603,0.07909951783290792,1.334790525921743,7.2480188825850735,73.0096664428711,952.0673217773438,0.003138853469863534,2689,0,0,394,132,2700.0262540799995,9247.44269064526,65535,2,1.14619824,2.29239648,6.422019496333445,0.5551828375103393,4.260876274926799,0.0094395209514605,0.7985440991212296,5943.880952380952,13625.73177277714,0.02629323182704654,1.1282824721942486,1.3353798483932957,1.8858501018321907,1.0017899765250884,1492.8021379653237,3422.0943664081824,26.00618697631899,15.123837569903225,1,2684.2380952380954,6153.337961005714,0.018752035936829742,1.0373311173890802,1.041003860022084,0.986804738990759,1.002590126615792,105.72883286019032,242.3724042832086,-0.009319689022869627,-0.009319689022869627,92,2.8099978591304344,258.51980303999994,1.8326510984245716,0.6534232846201252,1.8808019848453137,0.4002128763677019,0.8560202155528346,17013.158896025063,4398238.486888622,0.19911033509987644,1.6666536643843133,3.280240258978253,2.977630023278169,0.9741073953351872,11826.600122027085,3057410.3341792813,30.163139430695843,3.1981649237449035,3.9782608695652173,0.03224990945852425,3544.946081650339,916438.7628156652,0.09557518022889049,0.8213043061752034,1.3748044784532534,1.298649531780044,1.0017223811157923,966.4368192724337,249843.05616891364,0.03224990945852425,"CurrentSlice","Yes",710.4460000991821,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",3,4,"D - 3",1,1,,,,1330,1,47,72,187.14291264,0.6118079768853982,0.6442278560306633,1.6499178771167688,0.20716171937919814,7.010159953733904,5.571268552619356,26.46566312186415,61.99891034505263,20158.469376391982,3772514.6734622396,0.20670918664674773,10325.24996938807,3040.3936071314115,17380.14331233804,31214737.38895912,1.8518715586941634,4166.940808837358,33481,436.80609420935406,441.52587594654784,11.786583728027344,7.593245565032959,120.35764381701581,48.96395282005206,4,29.89081194752311,1,50.271322940533665,3,44.710837583162935,2,-0.1142275777212754,0.19780444470797942,0.6262369730308877,7.407827896963082,181.45193481445312,423.04290771484375,0.0029016747139394283,2611,0.11019347872034796,14900.517817371938,2788526.3041871996,0.17486521861369864,2282.0742476974156,8046.193996239649,9071.592406499625,16292579.962073326,1.8518715586941634,2605.5823055920555,27805,0.016556753099384345,0.41741189894789255,0.6671593890903319,7.361689274657759,307.5359191894531,231.02301025390625,0.004948077257722616,2825,0.11019347872034796,1.0819264626318965,1.2982869347042936,0.5921349596480177,7.4493201561094535,91.82369232177734,542.2427978515625,0.0051538096740841866,2887,1183,0,213,302,1273.4262446399998,12193.173308239915,58868,1,4.89739248,4.89739248,0.43447029397214304,0.34276806494461987,3.1080960018316492,0.05835400214423947,1.5564662915553993,10347.106382978724,50673.84098975999,0.34133878916060395,3.373183851576825,1.5592622187054763,2.884943918644161,0.9456307442198797,3711.2075207789767,18175.2398039824,28.13652732847932,,,2983.872340425532,14613.193961279998,0.07860974456481437,1.0899921948733027,1.0739820566890816,1.1102010128716377,0.9857687354721822,205.54627637159183,1006.6407881942355,0.1517524190201186,0.1517524190201186,74,2.310701857297297,170.99193744,1.7631828589113143,0.7175418519701555,1.8190062410261294,0.36399792407984893,0.7687885432701281,20590.491539107836,3520808.041113976,0.21240557428768728,1.8967013136675253,3.5324678371594427,3.578876620635812,0.9692756962903862,14761.566128235521,2524108.791915671,48.53510006009492,3.331669229671397,4.162162162162162,0.018322119812610914,3824.3088757949395,653925.984041165,0.09208795691070013,0.8595977579603167,1.3764795015509352,1.398316513996161,1.0005129606798222,1045.9828117409993,178854.62750853223,0.018322119812610914,"CurrentSlice","Yes",92.23600006103516,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",4,1,"D - 4",1,1,,,,1346,12,33,77,212.98447295999998,0.7231282683158524,0.45646471757987533,1.4014833431600893,0.30147389513675893,6.892519301762793,3.6898066117264983,24.7884339255226,60.83748248289965,16524.247553816047,3519408.1563100796,0.1656433174661006,9872.060322410402,3077.8961099136577,13685.25416382549,27972659.5108593,1.4360206650912584,2737.1311834451876,27860,439.7925745596869,436.53599001956945,12.538753880310058,5.7234987487792965,95.09902559134757,85.83026215009107,3,57.28223453236117,1,92.06020661193413,3,80.41384213189566,2,0.027769098454433993,0.3714346130591806,0.5907223088146875,7.48614772393015,297.3810119628906,284.428466796875,0.003959863446652889,2887,0.12127774332898883,12374.506849315068,2635577.81944128,0.17487401676153724,2561.886794293555,8617.220594474296,6218.04074922064,12709675.291406987,1.4360206650912584,2163.979718182881,30414,1.968468179035319,9.994611856185676,0.6563049314302565,7.399986477356892,477.134033203125,165.0644989013672,0.006761356722563505,3178,0.12127774332898883,0.7683675643976186,0.11534516327420796,0.5452453077308986,7.546267123178028,166.98770141601562,344.2529296875,0.004493691958487034,3254,1282,0,121,363,1685.1198124799998,10189.163121444471,45309,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72,1.6310169399999999,117.43321968,2.419569007799163,0.6957042415843137,1.6396117942936024,0.4034423390005698,0.6000452043025503,16891.000882831337,1983564.617288606,0.1656911201317835,1.5615300413450879,2.743619571392143,2.7353855727542404,0.9734278313111323,10734.534782736908,1260590.9813037443,35.56230723780789,3.0570725788594006,4,0.025551829475159975,3682.0733509712977,432397.7287024861,0.07609762447139345,0.829872915599331,1.2969643972941918,1.3165991212184571,0.9989758882349484,843.0799609807405,99005.59426565711,0.025551829475159975,"CurrentSlice","Yes",526.1800000667572,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",4,2,"D - 4",1,1,,,,624,23,81,74,435.65953103999993,0.7730896254250207,0.8858731414101789,1.037504508486962,0.8747005050005335,8.481617400477077,1.2258133455680011,26.16273588445979,84.1518405519972,19338.696484094715,8425087.4411856,0.23582066850193203,20794.15883000343,2990.7472178138814,16260.511696186377,67985199.40175524,1.8962009930537926,4560.4643328351785,33156,213.9767159052858,432.5156357809136,12.697104972839355,11.248024269104002,3.9182164301748674,55.697556513121306,4,44.44471370131117,1,57.8729821638884,4,52.98635423403823,3,0.21204699952689454,-0.184388772274084,0.30073061464543793,8.170373728198417,354.6416015625,393.5448303222656,0.0032647126354277134,5809,-0.10047301712642905,15275.471896675437,6654904.922920319,0.3250783396015948,4973.2006885028595,8055.829499421686,9121.711779659348,38137876.95075574,1.8962009930537926,4965.7250408020755,44205,1.55603912450089,3.4590103685559983,0.31937968833279057,8.126520120096512,499.3902587890625,273.0440673828125,0.005144456401467323,6647,-0.10047301712642905,1.0023009198944655,0.5731530225205468,1.5779061334915567,8.083743074194404,190.2923583984375,1088.290283203125,0.0015096861170604825,6800,535,0,190,122,1482.6595233599999,13557.171410499684,59093,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,54,2.834621573333333,153.06956495999998,2.196191318912518,0.670985573438273,1.6935218317872796,0.43653850226154906,0.7955330064796791,19755.060151259524,3023898.463111927,0.1516840127436385,1.381314482706227,3.210242156926747,3.344403289164888,0.9676432019693644,13601.300034243435,2081945.0791320757,22.575169685211034,4.114626085405174,4.851851851851852,0.06643439805970909,4328.950027273631,662630.4974083548,0.10665532866473033,0.7749423812465892,1.4063320838562143,1.5942823816897937,1.0029550704135828,1250.7652393652938,191454.09105673578,0.06643439805970909,"CurrentSlice","Yes",539.3359999656677,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",4,3,"D - 4",1,1,,,,1038,0,72,9,44.38913184,0.2404390229952263,0.13816558715637356,4.8933681425056195,0.026440313082867317,5.87966142852445,0.6360530792054455,22.921073126710276,48.16602206901052,15122.901408450703,671292.4644230399,0.2510316966879054,1691.9674108016998,3123.0050828077133,12372.301408450703,5270600.399999999,1.7619278550524924,3796.327599407295,22340,344.75721971830984,451.95712957746474,11.647753770446776,1.609318738746643,-2.1573098479629027,49.512252982616026,3,32.00733120974038,1,49.512252982616026,3,42.06269359544493,2,0.01572654354619379,-1.1041863972451464,2.3915008045140955,6.041422497808151,44.22711944580078,238.82034301757812,0.0054153683595359325,590,0.2738329457479545,14316.333333333334,635489.6077987199,0.21688680462634058,634.7263806476524,8125.379987767327,9000.873046251994,3834371.9177033496,1.7619278550524924,3105.023790632234,19763,-0.3794451249753668,-1.0605358389769808,2.5017082148603675,6.01293223683048,31.405969619750977,210.30447387695312,0.0060431924648582935,335,0.2738329457479545,0.9187673005155603,0.12350080796886465,2.369459322444841,6.047930922038762,20.273529052734375,948.3514404296875,0.0018148361705243587,680,1016,0,153,45,279.04717151999995,10357.379761015683,25566,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1.2503980799999999,1.2503980799999999,0.6639006016082766,0.36457689573790686,2.559816190369934,0.11181713500861856,0.7137376548920356,15171.333333333334,18970.206071039996,0.16758820866666319,1.2550541110669187,2.854189950436775,2.7362893741886936,1.0059796785515045,9855.873046251994,12323.764733757243,12.473580592991576,,,-0.06524223497374355,3516.25,4396.7122487999995,0.06586440094830304,0.5375985601070644,1.2783574492837926,1.2693682981657985,1.0068060626899369,765.6500000000001,957.367289952,-0.06524223497374355,"CurrentSlice","Yes",552.5030000209808,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",4,4,"D - 4",1,1,,,,1534,0,42,42,123.06001103999999,0.7301504246575151,0.7200332545336073,1.1748410381930297,0.5359141838381977,4.796871573907157,2.263821313498898,17.371319369581574,46.0211255173614,17247.44284504657,2122470.5069231996,0.1874017258774719,6057.9170970576115,3007.7366811354677,14645.823448889207,17296717.493138153,1.5474117683537545,3232.2005561347814,24835,502.8701944115156,446.8833906858594,7.78499056777954,5.605452095031738,56.72709569193112,64.32303044361483,3,44.891918436970165,1,52.99638331577141,2,52.99638331577141,2,-0.26281041442939784,-0.6540398262286051,0.9385120461498422,7.000453186496293,128.92074584960938,296.0085754394531,0.003977529238909483,1514,0.12474623327852086,12245.391193903472,1506917.97551088,0.15169820094861916,1464.2455524567786,7913.466502152159,6652.630901131285,7856757.094236048,1.5474117683537545,1857.6038140272203,24981,1.3139746361393392,5.364489877870573,1.0603967274680035,6.915603740088389,243.73590087890625,159.93846130371094,0.006959384307265282,1560,0.12474623327852086,1.544513880039805,3.2177305797662097,0.911267235031665,7.02275597469382,85.93089294433594,501.7247314453125,0.0031777950935065746,1751,1514,0,99,138,653.12459712,10322.943203573708,36515,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27,2.4158925866666667,65.22909983999999,2.037088997836556,0.7565488012242965,1.7126719091209006,0.384200040222888,0.753550094404399,16649.5732968923,1086036.6788763856,0.18324961174238283,1.4769528595633783,2.9769867516777726,2.918215072826393,0.9592584368536413,11056.813004120115,721225.9593579612,17.875469155360435,3.5619804261530503,4.666666666666667,0.0926806342988504,3262.0026262631923,212777.49498686395,0.09006865894579905,0.7846708313723374,1.2538354499821243,1.2083473144624912,1.0056287705416669,660.3832301058274,43076.2036492347,0.0926806342988504,"CurrentSlice","Yes",565.6360001564026,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",5,1,"D - 5",1,1,,,,885,0,30,20,43.55553311999999,0.7936226004914566,0.8807145387114077,1.1467392927420332,0.6389650413861236,2.8194478089566593,15.294538709835985,9.537633895259347,26.261503448350876,22148.543062200955,964691.6009054399,0.21422118220428166,2767.3940024678345,3133.0085551150823,19257.536585296235,8049650.292653826,1.7258048526524674,4744.687078887129,29931,290.9084411483254,450.3816803827751,4.230976039123535,3.7262821105957027,17.376643221577652,22.29873923586083,2,20.275469098863965,1,33.68408250347842,3,38.365119068788786,2,-0.6211288569227966,-0.6635800764145854,2.506810741512328,6.00231649565586,35.69084548950195,473.87908935546875,0.0026764872018247843,579,0.3893562944844206,14574.387559808612,634795.22006496,0.11686407813148042,580.5632135532833,8444.980055194872,8512.923949786455,3558402.211010738,1.7258048526524674,1703.22236650795,21070,0.4068201959569142,0.5727637415905775,2.598383736636066,5.975784546160742,63.088165283203125,221.82135009765625,0.004834176506847143,431,0.3893562944844206,0.09514850348292776,-0.3129816562061727,2.4839174927313934,6.008949483029639,32.78969192504883,267.7711486816406,0.005122100003063679,485,869,0,236,323,1008.4460515199999,10669.680615829717,62438,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42,2.67446256,112.32742751999999,1.9896914983796303,0.6587528871571765,1.799501999671538,0.3913476216276629,0.8327716739690647,20121.332582800147,2260177.5273002977,0.1927004502549118,2.0465748120833362,3.319550174240276,3.3820734484981116,0.955243226334812,14059.86897277799,1579308.912980416,38.90310872870371,3.118364648244718,3.380952380952381,0.13182667876462922,3529.122929807113,396417.3001070785,0.07445935694613559,0.8910046465082796,1.2207246708023969,1.262906680957881,0.9943305488520147,638.1164529023918,71677.9796127129,0.13182667876462922,"CurrentSlice","Yes",684.2430000305176,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",5,2,"D - 5",1,1,,,,655,12,45,66,187.87231151999998,0.6998870653133201,0.7846570052828886,1.4092497310224636,0.2998862848028607,6.491356373463618,1.6755281602173402,23.142756482320767,58.079428965712275,20424.361064891847,3837171.92458032,0.1436193722616056,10137.100142517975,3158.561733357185,17324.01550217494,31235199.95042142,1.636136454395635,2933.3339149841454,30326,218.41600465890184,438.8508073211314,10.213502627563475,8.01409638519287,117.46489745830087,75.70093389945117,4,52.10401262752773,1,67.06447594937062,3,68.15446077299038,2,-0.7038556202231575,0.6835583376612462,0.656759594304064,7.374359523939675,267.92584228515625,417.64697265625,0.0026730478275567293,2657,0.07605201718695773,13581.81697171381,2551647.3491174397,0.16869380638601483,2305.6622760186456,8301.151737818063,6944.134522531856,12520274.544124937,1.636136454395635,2291.1684025965797,26700,0.9137516461124515,3.0056544542906307,0.6992105657391745,7.333728781472499,400.1534423828125,196.48231506347656,0.005701800808310509,2913,0.07605201718695773,1.2903100144631865,1.6439071613927414,0.6832145475172487,7.343212284528286,286.1064147949219,179.45700073242188,0.006761461030691862,2547,613,0,127,173,1210.6979409599999,11080.295292193821,44536,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,58,1.7372628496551723,100.76124527999998,1.8326001775782,0.7896562913721328,1.3760042226975344,0.5322087847482816,0.5808888693607138,17686.61657633157,1782125.511021059,0.20150531378576503,1.4803215816269506,2.6645770887264,2.983503953059,0.9510517969589453,11048.934127149616,1113304.361668285,19.604129038109413,3.1338814196359612,4.655172413793103,-0.04681956391327675,3787.7569934818744,381659.1114812625,0.09559366818837654,0.7702306699694926,1.2217209071889952,1.362293312367799,1.000781723590384,687.4114307649679,69264.43178358466,-0.04681956391327675,"CurrentSlice","Yes",697.3500001430511,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",5,3,"D - 5",1,1,,,,298,27,66,39,168.59534111999997,0.687081642778066,0.8879237249694102,1.4509162450008473,0.27918908209266935,6.2395606892605375,6.078729808992465,22.06403527190799,55.52947200017403,23191.7521631644,3910021.3671191996,0.1696369309205441,11964.372541705285,3050.662792175738,20517.610673978335,33197494.070496947,2.193361883248125,3934.177659629099,39789,106.65647169344871,438.0212454882571,9.331556270599364,8.285710203552245,-20.13820554064004,28.71816636632116,2,28.71816636632116,2,47.691253950157,3,28.71816636632116,2,0.16750926984480044,1.7269862624101284,0.6814559933749031,7.319965722399938,198.54940795898438,550.6355590820312,0.0020860761869698763,2530,-0.1422659764075664,17575.20580964153,2963097.8187307194,0.3282906096190621,3383.459712395011,8012.907465873623,12085.40541340577,19554185.958890535,2.193361883248125,5769.7750294277,44911,1.0848443410673094,1.716790045823692,0.6722884239573036,7.328647053476189,154.6222686767578,350.706298828125,0.004166008904576302,2785,-0.1422659764075664,0.4605799384484636,-0.7596539538910956,0.6417298592319716,7.362385451639007,58.398250579833984,1035.424560546875,0.0029572329949587584,2742,56,15,325,198,2010.4317129599997,9173.665025396496,44911,3,5.83519104,17.505573119999998,4.55254665565547,0.7045706930094612,2.714704224700563,0.07182124964110541,1.2144034607403544,18157.301531801535,317853.96962683974,0.22431820529069135,3.2946298896396606,5.960542233178591,5.760873950382426,1.0073818971533943,15111.051573076093,264527.6182325745,78.5161952471723,9.951616679789186,2,2882.556277056277,50460.799680523625,0.05736276233672113,1.0670215971944108,1.0779370832519586,1.0597123256885976,0.9918854565869025,208.41478787021106,3648.420308351269,0.18731617868450123,0.18731617868450123,69,3.0459576417391303,210.17107727999996,2.0370381238024144,0.6638504040973133,1.8721496474160748,0.3680067832506598,0.8641086303536764,15005.822291901144,3153789.8365611015,0.18780775833074093,1.6215163359601645,2.733400344061747,2.6263075101697355,0.9784159577895154,9516.021895665384,1999992.5732320612,32.8462688972244,3.908437009867576,4,0.09354349095263735,3598.6781240409528,756338.0581136564,0.10213690213936565,0.8877146615470259,1.3457321307019885,1.3183336370061722,0.9969882899064503,924.5366348548869,194310.86053227753,0.09354349095263735,"CurrentSlice","Yes",710.4460000991821,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",5,4,"D - 5",1,1,,,,35,11,74,38,208.92067919999997,0.7100879517833764,0.6228874357468936,1.3825904583011,0.31591299880776036,6.780278689050546,1.1821835436542119,24.1237664223479,60.80503944843789,17257.897256857854,3605531.6164665595,0.16630201719587992,10513.42661351663,3020.286824916447,14798.774893988655,29671543.662447255,1.3051427543581322,2870.0231263747037,25950,23.00670463840399,443.2982615461346,11.510251245117187,7.169590882873535,12.466869119685983,46.36194718859444,3,22.817807693608056,1,46.36194718859444,3,35.030656090529995,2,-0.1770106358001393,0.10470340691766733,0.6007425326956921,7.46596298968779,272.11865234375,307.158203125,0.003730593016371131,2832,-0.272921455752182,10215.506234413964,2134230.5008655996,0.1693327870828475,1929.7654021107799,7827.117915111086,4295.5514423705645,8612580.641952982,1.3051427543581322,1729.8201421355209,22913,1.5455819277941056,6.202309772299788,0.6912892332759125,7.362514069144092,560.009033203125,114.28409576416016,0.009764174930751324,3094,-0.272921455752182,0.8955027071938253,0.3219009518177578,0.5480065422478716,7.559821384683285,90.8980712890625,912.1929321289062,0.0025431469548493624,3473,0,0,202,74,870.6938630399999,10518.209191000478,52200,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,33,2.7439291199999998,90.54966095999998,1.58927904753149,0.6870446055232913,1.4463837124171488,0.4922948469072148,0.7542857377838399,16270.181553921395,1473259.4234652282,0.18179193876265484,1.6880410343511085,2.7483624665156254,2.7549312971765643,0.9593612532285253,10350.226761877995,937209.5241471711,20.25003056504775,3.71055770577011,3.8181818181818183,-0.10867299004173109,3474.251933572021,314592.3346745709,0.10876685189468743,0.847141332690582,1.4128015693852716,1.2770909889947917,1.0084861413235977,1015.1295707028225,91919.63845761093,-0.10867299004173109,"CurrentSlice","Yes",723.555999994278,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",6,1,"D - 6",1,1,,,,1451,0,47,21,86.06906783999999,0.7358336936179514,0.46593529883781853,1.3715821886439528,0.32939366055523356,4.334555099013864,0.4384314558304556,15.130335372357084,38.33881158628491,35315.042372881355,3039532.7777639995,0.22879315966359096,8190.951220250124,3249.469946028628,32575.504953906693,26907367.09192693,2.1643087272139505,8079.840128145123,54283,476.03659903147695,449.9671772397094,7.852398390197753,3.6587095905303952,4.071647181836995,64.86911710421448,2,51.35289514198473,1,64.86911710421448,2,64.86911710421448,2,-0.1216921525344676,-0.3363472105552079,1.239967403220984,6.699811548810083,48.23111343383789,1269.141357421875,0.001016691792756319,1337,-0.3240390674480317,18667.677966101695,1606709.6412796797,0.1510609661042302,1502.7686643035308,8625.238040846434,12692.813970815896,10484264.33989393,2.1643087272139505,2819.957468481973,29770,1.0155374155776022,1.2464227675002704,1.339633813881772,6.643793434935119,112.9599609375,371.70733642578125,0.0029523163102567196,1049,-0.3240390674480317,0.6010137454774122,-0.0569862874150755,1.292731973570813,6.669601744330474,74.02851104736328,388.59674072265625,0.002997111063450575,982,1240,0,424,65,973.8517046399999,11003.735608816605,50829,4,130.69264932,522.77059728,0.45758973284545285,0.14951208593369994,4.317967128824715,0.10544513560345256,8.249547124172059,16559.591851889116,8656867.723125093,0.27721471675915593,3.664967875360675,6.53225794868291,4.9302108572063785,0.9722637050587313,14024.543177758296,7331618.813615853,28.507096510475822,43.979396091822515,2.5,6326.242355770273,3307173.4948640596,0.3446087829223758,2.019765728400314,2.309237432550939,2.240258645408638,0.8521759116599676,3586.704936795612,1875023.8820757663,0.24913236175308556,0.24913236175308556,41,1.3418906224390243,55.017515519999996,1.8951121649373146,0.6978825442324418,1.1407708301077124,0.5539367011417178,0.46496093217736045,18335.55749394576,1008776.818991013,0.1908063285271556,2.0364241698184102,3.0687824038191693,2.9781483597760556,0.959325102353032,12360.693498659959,680054.6464004873,31.467233746064352,3.692917732876126,2.8292682926829267,0.11127444018899024,4507.473334186139,247989.984119572,0.10050798846242114,1.037146848098892,1.6453410356676825,1.5752153265641275,0.9991387797524508,1767.935915211478,97267.44165351288,0.11127444018899024,"CurrentSlice","Yes",1158.0260000228882,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",6,2,"D - 6",1,1,,,,41,0,54,20,69.60549311999999,0.5108816119533093,0.5522761946295234,1.7795846071507495,0.22721971609439018,4.440083602865114,14.626424893367634,17.541440292062678,41.37771972421894,16733.76497005988,1164761.9624951999,0.23539656734902173,3647.8229218590022,3282.7102070976866,14123.275298759374,9434347.899571262,1.3152294227631791,3939.0708327774014,21998,23.994477844311376,450.50122634730536,7.773449418640136,4.293091064071655,11.609397716596218,47.66177737466464,2,15.344609048749644,1,49.84243138607578,3,47.66177737466464,2,-0.6149880141970263,-0.598420614058675,1.55975474201298,6.475234100100001,62.68994140625,266.6035461425781,0.00504653574898839,845,0.4240739841531349,11668.270958083833,812175.7538951999,0.19224936329668818,890.012675124762,8871.66205084573,5959.377493097474,3980864.1653891127,1.3152294227631791,2243.2176624648546,18603,0.4917807630448843,0.07537777305095128,1.5732009035820573,6.469008227220719,81.64970397949219,145.7559814453125,0.008021146059036255,668,0.4240739841531349,0.03253519885405105,-0.8530392549217507,1.564236795869339,6.473158809140241,61.921241760253906,445.0656433105469,0.002577365841716528,838,0,0,529,280,3017.8357660799998,8824.766694289068,45366,1,0.10419983999999999,0.10419983999999999,12.566370614359172,1,3.1415925460576575,0,0.2282540689670175,14666,1528.1948534399999,0,0,4.445192536654639,4.567527461604697,1,11366.705339742757,1184.4088777283407,127.91686833010384,,,3133,326.45809871999995,0,0,1.2001579758939196,1.1399271284866896,1,522.5103286994931,54.44549264883459,0,0,128,2.5569663862499996,327.29169743999995,1.683830677919508,0.6703088140449338,1.6642423934899546,0.44375097633793925,0.764294925432628,13769.518477760226,4506649.075517589,0.21612321536679474,1.5718139467808467,2.411941747067289,2.3449191505187486,0.9630791646415219,8060.625012773868,2638175.6428580806,71.53570054903388,3.310937514762813,4.265625,0.08556527236652879,3123.727037560898,1022369.9244625288,0.0689578020540595,0.8934609181681632,1.1966057831612504,1.1106977956833972,0.9998999745444167,513.2373662603914,167978.32879299845,0.08556527236652879,"CurrentSlice","Yes",1171.183000087738,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",6,3,"D - 6",1,1,,,,304,0,89,49,284.77816271999995,0.6535485078986106,0.9836344045517751,1.471468379654654,0.27809804747782674,8.166554467516823,3.349487007102483,30.941689189829308,73.99789406918455,24100.062202707646,6863171.435524799,0.2042337768190738,19221.548476132844,3121.4817773188224,21408.731850000244,58510064.14605067,1.85167935984367,4922.046725233589,40864,110.83189769484083,445.7834928649835,11.644190144348144,11.453626039123534,-22.172595536318298,88.63491307634933,5,69.28971444315155,1,88.63491307634933,5,81.02805433801764,2,-0.15323614749396774,0.29319295624981745,0.42427063673664256,7.807944653535425,235.3858642578125,588.1458129882812,0.0021078542340546846,4074,0.3220054787025528,15014.60519575558,4275831.68161344,0.17703578665764325,3582.410567617175,8108.642090725255,8976.735349754585,24533417.71087928,1.85167935984367,2658.1224421845263,28148,0.4080761822447224,0.2807510490796279,0.47782325734082587,7.716720133765741,428.1864929199219,238.45245361328125,0.004759289789944887,4027,0.3220054787025528,0.6738125224798309,0.048590878573834484,0.40552721952517834,7.8393464114764315,184.9228057861328,373.1932373046875,0.005027716048061848,4197,0,0,445,185,1502.77009248,12129.191512966301,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,79,2.537727748860759,200.48049215999998,2.022714647219527,0.7106148143233711,1.5099481777182588,0.43862765773465046,0.7173716338506165,17320.402889191257,3472402.8956345487,0.19235128411337102,1.6424230823423125,2.8686280643599695,2.8897788959631643,0.964389675436886,11282.533043190262,2261927.777310246,34.056734455529615,3.442985129442362,4.6075949367088604,0.11783167273862753,3707.7165966795683,743324.84809212,0.09274973981416369,0.8183909377948061,1.3776519827637328,1.3213713804484268,1.0013833031144799,1016.3862439721665,203765.61441619374,0.11783167273862753,"CurrentSlice","Yes",1184.2699999809265,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",6,4,"D - 6",1,1,,,,25,0,8,6,4.376393279999999,1.1253002281794295,0.8835858079277059,1.0506745865234377,0.7094645710550961,0.8554652291983359,0.1364926243432985,2.6024968011507714,6.99083255173614,2219.785714285714,9714.65528304,0.027722417908202505,41.96444111027757,3021.1682122004345,0,0,0.6450241157643424,61.53782723808637,2351,9.245914285714285,452.02759999999995,1.2821402441024778,1.132880923461914,-16.230862311150467,123.07022044879872,1,123.07022044879872,1,136.49768463471116,2,123.07022044879872,1,-0.3807606034615383,1.081916780885205,26.077097505668934,3.6716556010871835,14.44444465637207,8.44444465637207,0.12654320895671844,18,-0.04307857881595591,5076.261904761905,22215.718487519996,0.024661505343808905,41.96725865010279,7869.879250555807,0,0,0.6450241157643424,125.18826009085927,5357,-0.3020463338639115,-0.5131956731581409,23.809523809523807,3.737669618283369,24.16666603088379,30.04166603088379,0.0343981496989727,48,-0.04307857881595591,0.3866672198244381,0.030263061029643268,34.013605442176875,3.481703979822218,14,9,0.1111111119389534,14,24,0,10,7,6.2519903999999995,5077.45,5357,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1197.4860000610352,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",7,1,"D - 7",1,1,,,,1604,0,52,39,124.62300863999998,0.701538551247495,0.5329534303631621,1.285840622018105,0.40946268672196706,5.050132143893893,4.167550414977143,19.338387361928604,47.24743944843789,18710.483277591975,2331756.7191619202,0.20103712905574067,6314.64508577085,3146.7746471841524,15880.21084399542,18992732.169418525,1.44110962021968,3761.5018413725356,29568,524.6333989966555,447.36058494983274,8.917769286346434,4.752755732345581,-40.22201045449438,67.70507130037437,3,39.8890631629351,1,46.095878732199374,2,39.8890631629351,1,-0.4510506380161887,-0.20543183376705398,0.9186138857507187,7.021236945851169,138.1807098388672,361.53936767578125,0.0033916702959686518,1804,-0.1992076463809714,12030.270903010034,1499248.5546873598,0.2627175002737707,1371.216843018963,8347.922138758717,6382.771620885123,7633794.858578607,1.44110962021968,3160.5626992550747,28274,1.8662057782837036,5.5191120934106905,0.9689488931891143,6.98023063248749,175.5358428955078,170.97569274902344,0.007510126568377018,1646,-0.1992076463809714,0.8329481488174494,0.976389458158708,0.8612879050569904,7.065873972553922,61.46076965332031,632.7781372070312,0.003712920704856515,2001,1476,0,188,161,792.6481828799999,10734.711055606678,42477,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,31,3.86547793548387,119.82981599999998,2.60347332755575,0.6752275251814365,1.9345347394735823,0.4296305487620041,0.9721777195427631,14940.6725503851,1790338.042628897,0.1433872690905907,1.655562597475558,2.645537751137804,2.545392881900108,0.975312716876473,9293.173268260189,1113599.242791737,23.623389479669022,3.812269789051507,3.4838709677419355,0.18890494098486713,3945.1742442719465,472749.5037790464,0.09612922782163777,0.8780794383267936,1.3939203157409963,1.414789062553183,1.0101524537944504,1114.9018106753924,133598.4788312991,0.18890494098486713,"CurrentSlice","Yes",1315.393000125885,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",7,2,"D - 7",1,1,,,,806,0,26,23,48.036126239999994,0.8108131498142339,0.8625144928078939,1.0616674651578273,0.828852221498063,2.8489727801184115,1.0475545203225294,9.310975613758204,27.285287172482807,25227.462039045553,1211829.5512223998,0.20287877801823948,2529.0244050578867,3167.1869645434863,22590.462039045553,10414203,1.7990714417800648,5118.116670983086,33315,264.6273787418655,449.8081457700651,4.31596648979187,3.722583647918701,37.26269011321014,80.13011744616912,4,60.989686339085516,1,73.6774148588044,2,73.6774148588044,2,-0.5384804164604631,-0.6320892873050967,2.2162515704330397,6.118362312398819,37.7119140625,615.4962158203125,0.001998281804844737,663,-0.17752859941246216,14542.932754880694,698586.1537132799,0.3611627284333513,657.581431794947,8083.577126037531,9577.932754880694,4415427,1.7990714417800648,5252.3652731754655,35528,1.1579134297063456,0.9108727841909166,2.2444840745149888,6.109340874040121,32.81654739379883,286.9136657714844,0.005514801479876041,556,-0.17752859941246216,0.13539452811811814,-0.6678727135770641,2.1880190663510897,6.127383750757517,27.860605239868164,476.6515197753906,0.0033951960504055023,660,800,0,48,43,161.82235151999998,11485.92788151964,44941,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,1.8755971199999997,7.502388479999999,3.835579717949335,0.6126981368801806,1.977181249947106,0.2594582945200442,0.6435592272111131,20151.1013986014,151181.39099217902,0.13520520203092842,1.953527644062821,4.058630694582357,3.544760876765052,0.9555046295063229,15186.1013986014,113932.03218897902,6.3137588622301255,3.2194815782466657,2.5,0.08147218929928746,5534.9283216783215,41525.18247818517,0.23559833058296348,0.8248367867664341,2.098948927447221,2.033961541434342,1.0280973855358144,2897.9283216783215,21741.384056425173,0.08147218929928746,"CurrentSlice","Yes",1328.473000049591,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",5,4,"D - 5",1,1,,,,182,19,69,28,129.62460095999998,0.571445935356091,0.5359310322555438,1.8549851495804313,0.1615181794883569,6.186200545123816,4.0884537852498015,22.62595443113947,53.39014179322947,23033.91237942122,2985761.70073008,0.21545592116577952,8769.447344509936,3020.286824916447,20428.548817218638,25413114.728619985,1.9770635852052743,4962.792809760052,39641,70.24480900321544,442.583970096463,10.905097293090819,5.8443800491333,12.167419473000644,37.50677665673138,2,27.770048826010832,1,37.50677665673138,2,37.50677665673138,2,0.4270535433308582,0.07827130520994663,0.8697697501059749,7.0699474290871,118.13541412353516,551.8201293945312,0.0021973170805722475,1957,0.09138386325582026,15474.709807073956,2005903.0837137597,0.3075787227667944,1979.3139134525204,7827.117915111086,9866.860656836023,12274374.657104012,1.9770635852052743,4759.691477646595,40074,1.117696402871371,1.8428161048058112,0.8723545041924711,7.069106194129279,144.66180419921875,271.7310485839844,0.005119677167385817,2123,0.09138386325582026,0.5905289937260313,-0.593955551393802,0.834875569938276,7.099342044467231,54.26740264892578,624.1253051757812,0.007284692022949457,2083,91,0,413,104,1464.21615168,10234.800170794193,43855,4,20.34501876,81.38007504,1.0481080912767509,0.3591413851112466,2.208478485676804,0.11435643992792663,1.541075905367814,12196.653824521934,992564.6034764979,0.09933849220713661,3.2412652373347752,3.715603787838346,4.047364713992734,0.9963671784974526,8914.104198417244,725430.4685815744,68.95154634111626,24.945884033944715,2,2744.7396887889013,223367.121838907,0.0710843058010557,1.039962028995718,1.0534958454966987,1.0203136011892098,1.0147888116665242,139.37612658631815,11342.439640379109,0.16447143850481366,0.16447143850481366,45,3.55437232,159.94675439999997,1.6444834390392518,0.6123028604323867,2.0710591898611455,0.36659874520014923,0.9929706900010717,16390.044843070988,2621534.4771196614,0.17458281275610948,2.1190593059537184,2.9226971703358995,2.77522702193946,0.9734683965560058,10782.195692833055,1724577.2063743062,48.46702841787292,3.7615905778313676,2.7555555555555555,0.0981873780980679,4047.017986762284,647307.3919810494,0.14342880201921016,1.1829528720898967,1.5533409791533745,1.4876325327047029,1.0123601730593195,1441.654424559701,230587.94617472382,0.0981873780980679,"CurrentSlice","Yes",723.555999994278,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",6,1,"D - 6",1,1,,,,26,2,1,2,0.20839967999999998,6.283185307179586,0,0.7853981633974483,0,0.1614,8.526478231071183,0.3228,0.6456,3091,644.1634108799999,0.015098365434588203,2.001790476190476,3249.469946028628,,,0.8385275821663284,46.66904755831214,3124,8.3928,452.0814,0.3228,0,90,88.53495604156157,3,74.77158690789392,1,74.77158690789392,1,74.77158690789392,1,0,-2,500,0.6931471805599453,2,12.5,0.0868055522441864,4,-1,7232.5,1507.2506855999998,0.02629958163002852,2.0469396418968975,8625.238040846434,,,0.8385275821663284,190.21172413918129,7367,0,-2,500,0.6931471805599453,2,56.5,0.01801658235490322,4,-1,0,-2,500,0.6931471805599453,3,324,0.003086419776082039,3,26,2,10,2,1.9797969599999998,7084.105263157895,7367,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1158.0260000228882,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",6,2,"D - 6",1,1,,,,494,0,51,16,56.05951391999999,0.5029410866188769,0.36834242123870875,1.8867308149411188,0.18762423639394488,4.102888314346088,1.3732303903063443,16.152906839327713,37.42579531041684,23762.120817843865,1332092.9427566398,0.28808074047757376,2677.365878856966,3282.7102070976866,20786.62896116634,11183206.381107492,1.5172485889880523,6845.4093605220305,36118,168.62279999999998,451.0482,7.699054721832275,2.8358884574890135,5.116075468137632,47.907176246152225,4,50.238440657926674,2,49.505917053749734,3,50.238440657926674,2,-0.12026237325593159,-1.120339675456718,1.9347438537333645,6.25951425166305,35.84071731567383,550.126953125,0.0026058496441692114,835,-0.029425936892094544,13460.516728624536,754590.0249187199,0.21044697313676233,545.6412453920801,8871.66205084573,7763.946696051246,4177003.3224755707,1.5172485889880523,2832.7250023957877,21404,0.3658904641409358,-0.29243003435226766,1.9209242547781264,6.264667762299184,47.43863296508789,193.0684051513672,0.006289624143391848,497,-0.029425936892094544,0.34805569991054564,-0.6892406142656942,1.9140144553005072,6.268848692742447,32.426448822021484,1018.9598999023438,0.0011313151335343719,673,494,0,81,45,186.83031311999997,13328.575013943113,29781,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,0.72939888,2.91759552,2.8118737030343084,0.47247997723666857,1.0516190113597808,0.35880713932111563,0.3310134791688486,21632.291666666668,63114.277254,0.10646322514364548,2.2012159976419183,3.797423983725659,3.683932381564659,0.9668781587211231,15935.721634093377,46493.99004759791,11.90945596827842,2.566421849054655,2.5,0.20747889664930652,4174.216666666667,12178.675846176,0.08436062302520957,0.8985097092695398,1.4028661033969878,1.4842184335004267,1.0128334258531824,1198.7248099891426,3497.3941353371733,0.20747889664930652,"CurrentSlice","Yes",1171.183000087738,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",6,3,"D - 6",1,1,,,,520,0,87,23,149.31837072,0.4655689681368401,0.2914057597929552,2.19148057281521,0.13070865211474236,7.21664758908075,9.774886602815359,27.912402327280965,63.48476855182316,21034.58688066992,3140850.2417899193,0.15530234613702598,9586.131013967251,3121.4817773188224,18278.488547788384,26193074.088980753,1.6190017570340771,3266.720692591146,28494,179.9883692951849,450.0784856943475,13.8570344833374,4.038019662094116,-3.500901101345677,60.33099815473103,5,61.17476823746419,2,60.19333257505831,4,61.17476823746419,2,-0.714297519585574,0.6802738784717546,0.7991277284660401,7.1693241517032265,151.34568786621094,435.94921875,0.002653287025168538,1753,0.48480947739732383,13127.905792044661,1960237.5038337598,0.1310748372183217,1966.4439479394289,8108.642090725255,6595.068810477841,9450733.605414746,1.6190017570340771,1720.7381147097165,19529,-0.3381578212936786,0.29643105989869056,0.882887612254071,7.094942911087166,211.0327911376953,174.29713439941406,0.006331139709800482,1464,0.48480947739732383,0.018016849617217615,-1.177126275043563,0.7825705421358479,7.186974602906122,120.19538879394531,169.1885986328125,0.008114436641335487,1474,0,0,673,265,2074.0978152,9823.035568952524,42484,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,91,2.661103606153846,242.16042815999998,1.848870630530539,0.7545993647276228,1.8238368889991394,0.47211403039678956,0.8168613383698602,13921.050330390883,3371127.508444365,0.16639866113177684,1.6628132085359384,2.1309349015857566,2.32262249970578,0.9614620844071673,7388.213348824062,1789132.9078886623,79.966156975033,3.7349921054789665,3.1868131868131866,0.07997412186709564,3131.9603118283853,758436.8500924888,0.07920518358199483,0.9544473037055689,1.1363746621311137,1.116180973609623,0.998881223837209,375.86197894684574,91018.89775083306,0.07997412186709564,"CurrentSlice","Yes",1184.2699999809265,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",6,4,"D - 6",1,1,,,,821,0,45,67,231.11524511999997,0.7855237292047524,0.9786630912344944,1.2348838707991443,0.4178276856889914,6.739651204262854,4.652445893958118,23.830424419216705,60.80503944843789,16949.446798917943,3917275.5515803196,0.1599832287083353,12170.236140908764,3021.1682122004345,14159.103229201071,31404890.962367978,1.3708062675626416,2711.627223711051,24809,272.2208201983769,442.2489527502254,9.633140135192871,9.427598703002928,111.96939423616027,54.133074422180215,2,36.96327522070678,1,78.62330432235309,3,54.133074422180215,2,-0.5800514384474817,0.6008386708824616,0.5638756920384981,7.5413989912746775,321.93060302734375,294.5653381347656,0.0038963998667895794,3069,-0.09114775802039696,10788.079801623084,2493289.7077262397,0.1501200561132141,2840.643471922121,7869.879250555807,4837.87486685784,10730406.45469069,1.3708062675626416,1619.507145173489,23578,0.6171761887229947,3.323393668106684,0.6602264771957612,7.420288716380034,547.8126831054688,123.95681762695312,0.008909648284316063,3219,-0.09114775802039696,0.6558584115122007,0.3269393777726841,0.48378664277275607,7.654512768083443,131.9881591796875,605.356201171875,0.002773693762719631,3633,725,0,182,256,2662.5143116799995,8628.689456793989,49895,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153,1.609989684705882,246.32842175999997,1.6710306795477488,0.6618438896926512,1.474591982349799,0.42503820576513,0.5848461498634445,14062.540792419673,3464003.479332357,0.23696600744256827,1.3574896915847416,2.3633708328693874,2.512136413405265,0.9602248358518709,8112.33585765443,1998298.8886030714,40.788636326989035,2.9762318867518536,4.915032679738562,0.03260225701905412,3132.928666760373,771729.3739697435,0.07806067508775126,0.7623593534246931,1.1227752384192107,1.1632385462889905,0.9996404966820428,342.58509704350035,84388.44627322187,0.03260225701905412,"CurrentSlice","Yes",1197.4860000610352,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",7,1,"D - 7",1,1,,,,1348,40,74,71,306.24332975999994,0.7214946349667388,0.4340038783642679,1.3866894640057699,0.309980031552056,8.221157694376725,2.1011442689265802,29.466884238412447,73.03343006927157,14404.706362708404,4411345.24073088,0.20401764837292738,11955.730657891465,3146.7746471841524,11501.541553645733,33803030.62616481,1.628904305652171,2938.814317622313,32028,447.1195169785641,428.7538554610411,15.08192936553955,6.545615837860107,-42.936372207590445,55.23259765026659,4,31.973656165721632,1,50.57446447824751,3,41.521162285492494,2,0.2688269448293782,0.7305794865782125,0.43333189391044236,7.807614126565226,362.2596740722656,222.14503479003906,0.005432129371911287,3882,-0.013384432182031768,13597.966315073154,4164286.4822923196,0.26948279533602254,3243.6229148773814,8347.922138758717,7673.84243420343,22553422.914123878,1.628904305652171,3664.4179734709874,37578,1.3793772376430438,2.8745980261786324,0.4449090217199652,7.791433414570691,459.3612365722656,208.2572784423828,0.006153715308755636,4983,-0.013384432182031768,1.2580058266336895,1.2847751855657998,0.38632875500377933,7.895900856654748,197.99879455566406,436.126953125,0.00776295131072402,4986,1190,0,326,304,2098.6889774399997,12507.26940072489,65535,2,0.4688992799999999,0.9377985599999998,4.084863801381926,0.3026711707265821,0.9056121487831879,0.25,0.2532438577686178,14942.642857142857,14013.188954022855,0.07903631363067531,0.9610611626876554,1.6586808003234175,4.641974229879042,0.9863754592751152,5933.891532458041,5564.794934335344,34.09847939106384,8.142306073834366,1,3310.357142857143,3104.448161657143,0.06360218121965962,0.4887613234510488,1.1402580840479186,1.203231045522373,0.9923311363871627,407.1923337944718,381.8643842754949,0.6500634691159648,0.6500634691159648,85,2.731261688470588,232.15724351999998,2.3860431335889962,0.6013791277088745,1.8884711829211727,0.348664879410993,0.8367783258534838,20646.217222720723,4793168.879541992,0.16166048320088858,1.811566106817999,3.4851089609033696,3.5174276244694345,0.9758883631135798,14722.093341851,3417840.609088273,36.98596514045602,3.8300946451280864,3.788235294117647,0.03939341075577406,3718.227754164039,863213.5061862834,0.09121560050549099,0.8845544133707598,1.2807498019254797,1.3334031991896866,1.0090103235289118,815.0629451013679,189222.76663002663,0.03939341075577406,"CurrentSlice","Yes",1315.393000125885,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",7,2,"D - 7",1,1,,,,573,16,31,77,202.98128831999998,0.705863946878931,0.4037839275725428,1.4501948885031852,0.27704968551168807,6.844649857507938,6.2160201717214685,24.566755448776703,60.113558069097536,20118.604209445584,4083700.2016334394,0.18295977266744098,10993.365449445027,3167.1869645434863,17281.19209126832,33663762.19379069,1.8807946693544737,3680.8952525463856,39657,189.80905133470225,435.36026057494865,12.693003231811522,5.125230697631835,91.40469836108404,31.945641087490802,3,11.494130544867101,1,31.3290036958616,2,31.3290036958616,2,0.24524527980012092,1.4783375727926202,0.5887152199486442,7.476431033570484,241.6817626953125,420.07757568359375,0.002759096212685108,3004,-0.21764708113171446,15203.548767967146,3086035.91595792,0.2518569179937308,2748.231218861941,8083.577126037531,9196.716519594587,17915203.780170254,1.8807946693544737,3829.1189352675883,31597,0.9812172763720256,0.924540657074826,0.6129595351837719,7.445910340795979,275.3185119628906,254.75709533691406,0.004921628627926111,3240,-0.21764708113171446,0.7667763954485899,0.36317951524119874,0.5491864451087621,7.526609320784207,107.32142639160156,533.302001953125,0.0040822564624249935,3136,530,0,93,421,1995.0101366399997,11226.992948918834,51284,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,75,2.5007961599999997,187.559712,1.8837438850031012,0.5121173220276473,2.1312448213403545,0.3015652997224463,0.8764008895571356,19113.788175697653,3584976.605462857,0.17004254749318687,1.787464882615307,3.182007984470714,3.3622881048422486,0.982461153221369,13106.955927325094,2458336.8789257873,49.21066625166921,3.402425842963788,4.026666666666666,0.1355851662386571,4178.768863148648,783768.6844867277,0.10276602091205217,0.9232271516525278,1.472739485525656,1.5356034738333197,1.0044535034794908,1341.3567449713823,251584.4847760899,0.1355851662386571,"CurrentSlice","Yes",1328.473000049591,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",5,4,"D - 5",1,1,,,,1325,31,36,70,213.92227151999998,0.7870157256342796,0.5056952522616532,1.2513751360447916,0.40487282691535786,6.527273569312521,10.114012555803855,22.607525631966006,58.44417434496562,16807.383828543596,3595473.7269105595,0.1935798355146265,11164.310611561825,3020.286824916447,14088.012727503872,28922690.12956545,1.7736617326088604,3253.570596960663,30260,433.4708715051145,431.68894632245497,11.649309008789063,5.891000257873535,88.6788987435373,71.9701502404276,4,62.263251074732715,1,64.21194414668133,3,64.53279563395647,2,0.2724431438520013,0.4892015470494928,0.5701325967558672,7.513512358662835,256.55224609375,299.95196533203125,0.003941711969673634,2957,0.17240417359779278,13882.659522649781,2969810.0598239996,0.29951622879199824,3126.761497310182,7827.117915111086,8129.961175542343,16690810.29338843,1.7736617326088604,4158.081825827385,33256,1.5656460300800545,2.317144644835853,0.589113290780199,7.490285686237799,325.62628173828125,220.77713012695312,0.0059992531314492226,3235,0.17240417359779278,1.4499715565723403,2.1325435152768684,0.5274260352011206,7.570922062882,146.1231689453125,385.76220703125,0.005724543705582619,3280,1309,0,259,669,3089.42105616,9445.328476508483,44009,2,0.5209991999999999,1.0419983999999998,1.3420023087117205,0.3862227056455483,1.7090263511009027,0.15644894771419632,0.3749663503652921,10461,10900.345262399998,0.15844372888487107,2.807245214192148,2.0680168284300477,3.4714014911165645,0.9638121082340033,5402.530525193281,5629.428163202558,164.17894040924705,1.4261770145392443,1,2906.1000000000004,3028.1515502400002,0.08718179609961468,1.0611118182505617,1.0686662070097324,1.0802967467287614,0.9961910798383715,186.72889896027755,194.57121395037083,0.6704590965214772,0.6704590965214772,154,1.8958957901298699,291.96795167999994,2.413887056477872,0.6255360867498554,1.5440152984832307,0.41606448628159254,0.6286526939196926,13803.10866864829,4030065.3648016932,0.14437789989010807,1.6086483961359688,2.399414646100598,2.3371967880975024,0.9758343211353965,8050.410321540852,2350461.811763813,79.86877737120271,3.4403639957994363,4,-0.015036702524814715,3303.680863189944,964568.9346299821,0.0824376437812954,0.9292639042653428,1.2148694460740634,1.2143912248057906,1.001638958946888,584.3097621502211,170599.72440162805,-0.015036702524814715,"CurrentSlice","Yes",723.555999994278,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",6,1,"D - 6",1,1,,,,977,32,72,29,159.00895583999997,0.6599005269934991,0.4781993924044387,1.5172677504050018,0.25139783305446406,6.196578738326191,8.836292971138647,23.192230899161036,55.02708248289965,23324.24246395806,3708763.43995296,0.17785839352595448,10556.55453013294,3249.469946028628,20570.5668371332,31390684.993465263,1.8407227273621511,4148.4122948494305,39442,326.22197614678896,438.1138482306684,11.180629376220702,5.346570174407959,-8.251977084155717,24.74346930984491,1,24.74346930984491,1,46.550480361072296,2,46.550480361072296,2,0.4327206762806465,0.9557078781979764,0.7317462798603155,7.251935642250644,179.08460998535156,558.2901611328125,0.0020531904883682728,2364,0.3806430842531506,15876.671690694626,2524532.9877518397,0.15065042028138276,2417.886893734328,8625.238040846434,9740.607919085967,14864167.684525186,1.8407227273621511,2391.8272628726772,26290,0.2876191535756389,0.6880727129452207,0.7832777080194926,7.203204482733301,294.689697265625,261.9020690917969,0.004195584915578365,2430,0.3806430842531506,1.7053671905001688,2.9831769799735106,0.7076982800526994,7.276120897562881,132.05563354492188,243.7743682861328,0.00877311173826456,2247,905,0,678,113,1884.7667059199998,10514.317503317116,65535,6,1.02463176,6.147790559999999,3.8611185013310454,0.5487268146992429,2.5093960272732967,0.2093361834239508,0.5843248375967236,14637.282716049383,89986.94850577954,0.11164940285691116,1.9822279391836617,3.5802015353204726,4.357890629921134,0.9569226939124663,10548.88641443192,64852.34431715679,150.5565050133822,5.9073479006452185,2,2804.5463844797177,17241.763787586537,0.07054234310388802,0.5120234774766335,1.0184737654498235,0.9931502669273297,1.003306033860967,50.87075765485815,312.74276369058464,0.21724093479889037,0.21724093479889037,84,2.4908723657142855,209.23327872,2.1497420233439106,0.6943365785047676,1.6940605342656667,0.405843224149971,0.7459471363006098,16003.0426492525,3348369.0829990953,0.18570090178054718,1.9867776183411299,2.608030692786798,2.5992902170023644,0.9611182391902557,9866.978877643844,2064500.3416304067,68.56560572847046,3.5658258727423977,3.2142857142857144,0.07141279324702117,3543.2133585473193,741358.1482133585,0.07978335196189346,0.9860990977015911,1.286721400309898,1.2382378272412449,1.0009685383197344,789.5377317224597,165197.56828144199,0.07141279324702117,"CurrentSlice","Yes",1158.0260000228882,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",6,2,"D - 6",1,1,,,,1192,0,61,18,76.79528207999999,0.4596855612461039,0.37152484184902396,2.211770026245388,0.13590306029592747,5.19932935389774,6.034001857843185,19.63515744780265,45.81859531041683,27063.15739484396,2078322.8061124797,0.26856140645926946,5635.483113281944,3282.7102070976866,24274.803813701623,17890530.410698097,2.0468489902008056,7268.119613187873,38034,396.48994029850746,450.7702713704206,9.749307080841064,3.622109771347046,7.193938590598397,52.6328805123797,3,35.28482405889133,1,56.82887379696057,2,35.28482405889133,1,-0.5387730749626193,-0.6946166033093997,1.3936730557156245,6.583777927995037,45.63119888305664,700.7772827148438,0.002124144695699215,1109,0.2687656264192825,18158.95251017639,1394521.88029632,0.14358092753723983,1257.92977867739,8871.66205084573,12267.717696033145,9041307.941976428,2.0468489902008056,2607.2792445158157,28029,0.6260680775584955,0.32014671410561135,1.5225463897976503,6.519114079390096,67.74042510986328,368.61419677734375,0.0029851915314793587,705,0.2687656264192825,0.5136046316886157,-0.17523637682601256,1.4010372462345972,6.580015935156178,37.93266296386719,970.63720703125,0.0013375020353123546,995,980,0,303,58,995.9420707199998,11218.874136848714,65535,1,11.253582719999999,11.253582719999999,0.1549175677346353,0.8422837699798974,7.915411037690376,0.013317951681880213,3.7652360953621553,17803.166666666668,200349.40876128,0.4370133065015583,5.157469870342103,5.3082505988044995,5.544555615268331,0.9208934216050391,14449.299637352677,162606.38871501433,67.29691405601194,,,2877.759259259259,32385.101872319996,0.0779841535353011,1.0343197403284174,1.0320639673252243,1.047059000601146,0.9852744426181749,89.40567811692017,1006.1341943264549,0.25689969901192106,0.25689969901192106,11,1.8092881309090907,19.902169439999998,1.381203752722754,0.5691742494674222,1.5095212583150286,0.3802087833340689,0.628479401721505,25607.461926925916,509644.04619802843,0.13779349679595848,2.0971003383955487,4.346705357160335,4.360895260470702,0.9673011616099597,19716.22711278267,392395.69271612266,13.06590582117166,5.74652865796342,2.909090909090909,0.24684563346813676,4125.409431312143,82104.5975113483,0.07644137317305176,0.9225284442774019,1.4795144558467497,1.4668641358713999,0.9969068703481966,1337.0558501698042,26610.312080822696,0.24684563346813676,"CurrentSlice","Yes",1171.183000087738,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",6,3,"D - 6",1,1,,,,1271,23,52,95,339.79567824,0.6735844794972204,0.7221253744383107,1.4785847598673094,0.27815630646960876,8.942152867259459,3.092475555934601,31.54368830939083,79.61920220711859,12144.570990493714,4126672.7366486397,0.2014115638133207,12051.248988732837,3121.4817773188224,9460.194780117607,30849695.177963514,1.643235717461059,2446.057035037228,19679,418.7806848206071,430.9684883164673,14.5003354888916,10.471060194396971,73.96022850094622,60.79592276380873,4,53.49642236869829,1,57.930299286805344,3,53.49642236869829,1,0.20537890505956663,-0.20836301024444515,0.41686567230145305,7.858894495459542,482.1352844238281,161.69813537597656,0.007263087201863527,4184,-0.020849215960208757,13324.410303587856,4527577.036255679,0.2603249366261488,3812.1379740027865,8108.642090725255,7705.604371470845,25127975.855366424,1.643235717461059,3468.676267862313,49337,2.5042420391490605,11.427899593574052,0.42100329684042526,7.851173284796366,613.9241333007812,198.29835510253906,0.006254683248698711,5393,-0.020849215960208757,1.1870862217127298,1.2406598904905453,0.4559850315790087,7.9954630622898515,156.2976837158203,734.5779418945312,0.0035531087778508663,5516,1232,0,201,445,2525.6999217599996,11657.204917694624,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,151,2.675382646887417,403.98277967999996,1.8035569449591522,0.7179968438648098,1.7769080205039571,0.41771390767508504,0.8143215113960364,16438.16666054183,6640736.2603687905,0.16606530494622151,1.5862490041872468,2.925562274109079,2.7425844195346603,0.9708262186917176,10819.360728424817,4370835.421429687,40.42205957853403,3.420053756324076,3.9205298013245033,0.014836631176843128,3524.7541121356753,1423939.9639090803,0.09513579048376916,0.8359540378562462,1.3130626394732583,1.256166453246454,1.0065918190359382,840.3779017595671,339498.20073447586,0.014836631176843128,"CurrentSlice","Yes",1184.2699999809265,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",6,4,"D - 6",1,1,,,,931,0,59,32,139.52358575999997,0.7096533608514168,0.6977731100461289,1.240319874067649,0.5087270957435891,5.248083364717379,6.8665200872734955,18.822312716560628,49.705633655295436,17084.956684092605,2383754.41911888,0.21619501742813538,7732.2880555121565,3021.1682122004345,14320.50454794954,19175155.589704435,1.8136240450537973,3693.6825080763388,33302,308.6078894697535,448.7500991784914,8.60775721206665,6.006261520385742,-11.34402643624113,36.96327522070678,1,36.96327522070678,1,107.93277309095546,4,79.91457980079744,2,1.1128800905856826,1.9900778738921412,0.8461053219857428,7.11011298850652,128.35374450683594,325.34625244140625,0.0037402508314698935,1600,0.08333173364300074,14273.002240477968,1991420.4521519998,0.20430941954944215,1904.4272646097727,7869.879250555807,7852.566392637866,10514586.399742102,1.8136240450537973,2916.108802979941,37156,1.999571230844035,6.6177701678285015,0.8862632542091927,7.076064171543459,228.29248046875,218.22755432128906,0.005308633670210838,1648,0.08333173364300074,1.8843687566473224,5.770807023216676,0.8862632542091927,7.077353262234056,125.1837158203125,176.61367797851562,0.008979587815701962,1535,835,0,394,225,4910.2090603199995,10155.740360333595,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,378,2.141609939047619,809.52855696,1.7214698164817315,0.7085953578269957,1.5151627242430814,0.47177784243191045,0.6809429802798865,16112.38657111977,13043437.050100269,0.2442092071615948,1.5651042668521968,2.5095471636150894,2.878321464780432,0.9507397624693616,9691.950723279668,7845910.883144017,51.09412902525926,3.464718790191302,5.190476190476191,0.0317760290375086,2982.0012189341264,2414015.1436167043,0.07876236126778872,0.8038598423897557,1.078695188803154,1.1072000456786162,1.0001807534192855,217.54908279106075,176112.19505981897,0.0317760290375086,"CurrentSlice","Yes",1197.4860000610352,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",7,1,"D - 7",1,1,,,,1456,64,54,61,198.91749455999997,0.7331035705310116,0.5069299104838988,1.3585270422122175,0.32893241399148143,6.558140173126578,0.5840320455923217,23.189984351870525,58.392726620920705,17958.29020429544,3572218.0940198395,0.19694184651939622,9300.244831930775,3146.7746471841524,15137.866810555737,28898187.741350904,1.5164630357024727,3536.7388331651296,26402,478.5133766369827,422.6924806705081,11.701411340332031,5.931795403289795,127.95355377956183,57.78571733826861,5,34.74475429858262,2,47.2192197781947,4,45.524728270438374,3,-0.22656566117134475,-0.3991128502892898,0.6028624027620263,7.452928294401611,198.53558349609375,333.15032958984375,0.003618058981373906,2614,0.14028035351830573,12659.31534834992,2518159.29193872,0.1763929749979737,2220.7889524774478,8347.922138758717,6893.585117707416,13159853.989703458,1.5164630357024727,2233.0142957329526,26869,1.2613713531427104,5.7628094443093705,0.6780487015134123,7.367935814367803,445.1595458984375,171.80545043945312,0.006576694548130035,3084,0.14028035351830573,1.362965082948269,0.9917878044355879,0.661035743401785,7.479830234453397,102.6697769165039,680.1747436523438,0.006027445662766695,3325,1382,0,202,262,1413.78342912,11132.068912146226,46569,1,0.9377985599999998,0.9377985599999998,1.2127771900184563,0.6253180333125329,1.3962633538034033,0.2546440075000701,0.45650813793403505,13622.777777777777,12775.421383199999,0.06382676322130493,1.2078621390535154,2.076175257640788,4.231954413176989,0.9969781004037354,7061.30001830496,6622.076988894364,32.839489196005054,,,3047.6666666666665,2858.0974113599996,0.05884356752444748,1.0052194543297746,1.0805706240528847,1.1077497053904035,1.012468555178825,227.24327292696307,213.10841412059293,-0.23543817841380554,-0.23543817841380554,77,2.5901103085714285,199.43849375999997,1.6121457691907184,0.6976785262882701,1.5959040104118538,0.4470201352515728,0.7657266663228965,17058.008372202745,3402023.4962975844,0.18388295583644745,1.719332521169183,2.9585165607551995,2.9061163708375477,0.9626318684369883,11292.27814156024,2252114.943671746,23.217989503638602,3.414580022697843,4.285714285714286,0.08017945718508122,4034.1678086263996,804568.3513275291,0.08712194137367316,0.9129183143840113,1.4303412096144004,1.4467032731027194,1.0012944366243794,1213.7444148866962,242067.3579146152,0.08017945718508122,"CurrentSlice","Yes",1315.393000125885,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",7,2,"D - 7",1,1,,,,609,18,27,95,225.69685343999998,0.5402058679793371,0.27014299878834197,2.0583840244484706,0.13256869826884377,8.598764008459405,10.03364197763377,30.452891094278716,72.45828248289965,18849.989843028623,4254383.3949475195,0.20043138541953012,11850.723092636095,3167.1869645434863,15933.461644954345,34511877.92297111,1.6005489803302695,3778.129579382298,31419,200.83092908587255,432.0993944598337,16.60195627441406,4.484902253723144,91.29774498153303,33.60043572730522,3,17.29632282564381,2,17.29632282564381,2,17.29632282564381,2,-0.02745006662909775,-0.09308930973425067,0.5332985474328773,7.575902372553247,233.73043823242188,367.01495361328125,0.0032927498687058687,3209,0.2931050735941866,12938.161126500461,2920102.2555508795,0.265882656428137,2755.7502618506714,8083.577126037531,7041.342694588494,15251548.276478678,1.6005489803302695,3440.0326496092007,31831,1.410264472800299,3.6085382864303197,0.5597290110146825,7.539408429501266,356.6703186035156,187.39230346679688,0.006844609975814819,3640,0.2931050735941866,0.8898448860526406,1.1352685238854017,0.5170992310440289,7.599027971385422,187.09402465820312,345.8946838378906,0.004520502407103777,3361,588,0,88,615,2376.0689515199997,10432.309125992195,40641,2,0.8856986399999999,1.7713972799999997,3.835191552035469,0.43872674551025154,0.9214174784469364,0.31538413058015996,0.3371403961970064,11340.566666666666,20088.648946991994,0.16469523463069424,2.0108776461391753,3.190325991092829,4.270325371457628,0.9914328724378101,7785.893351673543,13791.910305524598,91.04791992118211,114.60599853992285,1,3087.916666666667,5469.9271842,0.06422077163238518,1.0329457792229328,1.0587645505041072,1.149493687744685,0.9931745782775767,171.38846859238902,303.5970670879233,0.7655949873622094,0.7655949873622094,179,1.9303165890502791,345.52666944,1.9334054000579153,0.6610325629896896,1.4890073085157471,0.4471992997541252,0.6375369557455209,15744.118946664337,5440012.982908129,0.22112040402220598,1.4063354726056825,2.6699344957717326,2.769532829860337,0.9641863792289255,9847.300514752369,3402504.949837183,107.91274160974827,2.977590300785895,5.139664804469274,0.03798942110442831,3583.8662368624828,1238321.3645415597,0.0769765185961126,0.7829467125381723,1.2288124761587542,1.3169901526769867,1.0011309991346562,667.3380387882048,230583.08993310994,0.03798942110442831,"CurrentSlice","Yes",1328.473000049591,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",7,3,"D - 7",1,1,,,,1285,0,31,34,83.67247151999999,0.8224028486040891,0.8793193094203701,1.0992489496258282,0.7023110908385942,3.826038934917097,4.9939961823340315,12.984426869138273,35.75641158628491,21731.617683686178,1818338.1617217597,0.1761570442768331,5064.462573932751,3207.3996859194494,19056.72019647248,15302546.317767402,1.324625060238186,3828.177538512315,30599,420.28600199252793,448.31814694894143,5.7478419845581055,5.054188444519043,61.129611105016316,72.41989577599392,5,58.28938675653502,1,71.39893894837122,4,58.28938675653502,1,-0.5956578393723809,-0.15004435283047624,1.319770660769313,6.646921258570824,90.79698181152344,476.5738220214844,0.0024535467382520437,1192,0.03975055709749915,10138.257783312578,848293.0856366399,0.14308010216867265,867.3421994749935,7653.68109636215,5118.711419069749,4110325.2695130087,1.324625060238186,1450.5829594487043,16809,0.4361437671518567,1.7798615059557106,1.465550263721505,6.570079851219376,171.918701171875,112.9756088256836,0.009837226942181587,984,0.03975055709749915,0.09026105087305294,-1.0074323491329948,1.273245255571805,6.672817168180785,43.72911834716797,822.3653564453125,0.0019392457325011492,1281,1255,0,93,211,901.9538150399999,9455.939348428836,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,58,1.96003492137931,113.68202543999999,2.095295672058565,0.6921116039121894,1.5903513390852386,0.4607485149234057,0.6579507393921213,14296.18149594252,1625218.8685165944,0.18461567426876913,1.8448443881095296,2.848102290235349,2.5960715237797993,0.966574848686389,9276.635131699692,1054586.6710394819,21.093276004427803,3.3793807327150756,3.4827586206896552,0.024643867450493396,3743.2575040767215,425541.09480692074,0.09148521008814765,0.9226990652314319,1.3994022282984304,1.3278466376107463,1.0022166726997264,1068.3600168630232,121453.33061610101,0.024643867450493396,"CurrentSlice","Yes",1341.5759999752045,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",7,4,"D - 7",1,1,,,,127,0,30,51,103.57464095999998,0.66070380007918,0.7416942372235562,1.481106611076874,0.2760299062546542,4.94117153895128,0.8275026974585958,17.765734303990925,44.38418482769122,25691.86217303823,2661025.4001662396,0.17225333874256976,7271.893752124199,3247.0156487313793,23205.87693318583,23066641.671586715,1.0704393408256545,4425.509037819768,40383,45.17933480885311,445.18374205231385,7.937362673950195,5.887096154022216,106.59172920597914,26.418885887496394,2,8.7421844754692,1,37.43840003018094,3,26.418885887496394,2,-0.668173256991984,0.7800534705109938,1.0829564914638738,6.849608293673475,101.68148040771484,660.8377075195312,0.0017848784336820245,1485,-0.33783931792242894,8205.269617706237,849857.8546339199,0.1585061935534065,974.1909803457298,7665.328902595568,3544.937514385204,3523667.8892988926,1.0704393408256545,1300.5860541820307,13297,0.7937797291286018,1.1949004976807114,1.269184523640839,6.729298218022913,260.08892822265625,75.69422912597656,0.01482442021369934,1282,-0.33783931792242894,0.9171116179940779,1.146762626176896,1.0546174430891182,6.868265310613437,62.51492691040039,514.0372924804688,0.0033987390343099833,1608,97,0,60,52,233.30344175999997,8298.043769539972,23624,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13,1.45879776,18.964370879999997,1.9958486855245394,0.7126652517171886,1.1660444208599519,0.5537895408198593,0.4990547493915301,11417.968648018648,216534.5921372378,0.21106199088236263,1.5284358507814575,2.4500332583341016,2.1464984442383295,0.975921357803649,6757.636544697615,128154.32570588726,8.85762818408109,3.1880833586854105,4.461538461538462,-0.1338742523374955,3338.0986138861135,63304.94014775017,0.11560478366096578,0.731111139702082,1.3427668677889286,1.209716277673552,1.0063185256725933,852.113374033715,16159.79405698353,-0.1338742523374955,"CurrentSlice","Yes",1354.6900000572205,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",8,1,"D - 8",1,1,,,,1194,0,37,88,275.0875776,0.6935436769801384,0.4278671259529499,1.4702443851208504,0.2735258473649913,8.023064979294512,1.7988776126457298,28.30718582975001,70.59980689670175,13303.32803030303,3659580.2818742394,0.16891094750551827,10053.011286722998,3327.007178959538,10526.734356733814,27790578.70177727,1.7814930793341788,2247.077742575205,22855,391.2384909090909,439.3344681818182,14.752029203796386,6.311908337402343,94.53183720440052,60.42252895136375,3,41.63989003288581,1,61.90153875836233,3,41.63989003288581,1,0.11063738619224434,-0.04350286928635683,0.4975895316804408,7.67521575901012,387.2781066894531,186.29409790039062,0.006068909075111151,3186,-0.1331207529965916,15678.417803030303,4312937.974036319,0.21593519793693647,3829.3749108190027,8800.717771460559,10105.242684817356,26677840.68791782,1.7814930793341788,3385.522251635337,36316,1.2099561959269125,2.0213755051568,0.47004132231404955,7.722251373740416,416.14202880859375,264.0753479003906,0.004447102081030607,4168,-0.1331207529965916,0.7547138503136982,-0.38413723762409857,0.5630165289256198,7.79058491542534,102.83203125,1056.5107421875,0.002206156961619854,4358,1087,0,207,247,2555.0842766399996,11333.094368092656,65535,1,62.10310463999999,62.10310463999999,0.21928030615024696,0.610462811495212,5.571508178561179,0.02472859693705387,7.4208409445637615,11440.713087248321,710503.8020135998,0.361807106663407,3.12116599377425,2.541996280327482,3.509140627987379,0.9648163417420708,6940.032588308161,430997.57003671175,16.86577570605341,,,2955.1208053691275,183522.17659967998,0.07645408995913401,1.0684960206992027,1.0642971758883328,1.0589615411015747,0.993765997447944,178.52713179991179,11087.089147248993,0.20883765599569107,0.20883765599569107,122,2.1301180406557374,259.87440095999995,1.978605688746452,0.7035759496482139,1.6116092180225676,0.43694804176868957,0.6873930594399587,17727.450016501847,4606910.453586759,0.15921399784102405,1.50862329670263,3.180852860440208,3.085426258484719,0.9706863159623171,12154.2748982889,3158584.9082959923,25.252260670032914,3.3815664558425746,4.459016393442623,0.04322970175896672,3786.6389311291164,984050.5238789937,0.07869544685763862,0.8585790390354462,1.3637713602730797,1.3332594576764627,1.0018471794213795,1010.0452575599006,262484.90625086805,0.04322970175896672,"CurrentSlice","Yes",1787.726000070572,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",8,2,"D - 8",1,1,,,,735,0,64,37,175.15993103999998,0.7421512707120358,0.839220009123214,1.269163730876896,0.4110145252824893,5.948209617793924,3.025847314904874,22.000187653745137,54.45980689670175,18461.61511005354,3233735.2295639995,0.17278610279931486,9084.192365413151,3071.3838542590283,15560.309038874195,26156879.49434752,1.1953325885804547,3189.9105262470953,28174,248.38874312908982,447.8735743010112,9.112002916717529,7.646975170898437,18.216528382621565,27.207753895011088,1,27.207753895011088,1,52.131630018793686,2,52.131630018793686,2,-0.18342615531736803,0.12499930641168788,0.6932645754541874,7.314566660876645,199.78355407714844,349.8064880371094,0.0033267149701714516,2310,-0.15552272276600462,10264.986912552053,1798014.3997291198,0.15836806376410612,1580.7517425268109,8587.55714569991,3055.098845559729,5135621.159385905,1.1953325885804547,1625.646101904758,23505,1.47405053442826,5.462948306010096,0.8114628236429053,7.195520430213844,375.3899230957031,116.33523559570312,0.009554882533848286,2103,-0.15552272276600462,1.474461263063986,4.296279472325956,0.7682886132266671,7.240203694365951,241.97970581054688,118.0445327758789,0.010270367376506329,1774,712,0,184,144,1040.4354024,10806.37766649975,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,64,1.9260689174999999,123.26841071999999,1.7765657598231308,0.7053229605777029,1.503582074402173,0.44944995807712945,0.6401039420717715,16170.545937402623,1993317.4981783736,0.206278962646243,1.3876864056441989,2.2428289852977326,2.6958356778694337,0.9718442566119004,8960.6578704103,1104566.0546911373,26.545392110599693,3.364046572584028,4.4375,0.12725476989389833,3349.270401754746,412859.2394958434,0.0859968642044588,0.7556890778106635,1.1544009213730801,1.2288228556603014,0.9975064003039051,447.9643305754021,55219.851089278505,0.12725476989389833,"CurrentSlice","Yes",1800.8730001449585,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",8,3,"D - 8",1,1,,,,0,0,35,23,63.77030207999999,0.7828934975620625,0.9458354098815775,1.1952713118551654,0.5564201414914951,3.4829926259224133,1.2773855213025063,12.456065259944651,31.99357903454877,17344.95424836601,1106092.9719820798,0.12263775445824561,2935.4584720571793,3259.5365980430956,14488.082653035272,8866706.583657587,1.907643455944769,2127.146240200615,21335,4.469619607843137,449.8666333333333,5.060848078536987,4.786729316711425,-20.698894321600513,43.78138418010273,2,28.40626297683462,1,43.78138418010273,2,28.40626297683462,1,-1.7242401445063071,2.723296043432182,1.9543765218505704,6.289282308062879,89.8209457397461,289.6790466308594,0.00387190212495625,592,0.15951097889687424,15575.954248366013,993283.3076025599,0.16515278238837355,1029.679559298279,8165.023815025199,10565.176038249283,6465887.735408561,1.907643455944769,2572.412182471655,22006,-0.01587298864680378,-0.6945165084037819,1.8369003374770387,6.338005967862644,65.76530456542969,251.33843994140625,0.004456784576177597,588,0.15951097889687424,0.5139710851312336,-0.8431790396756971,1.650006407791875,6.4099367219186005,41.1750373840332,463.0530700683594,0.002812380203977227,697,0,0,65,65,219.13226351999998,11096.406562054208,22512,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1813.973000049591,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +1,"D",8,4,"D - 8",1,1,,,,295,0,37,39,90.13286159999998,0.6811474843704015,0.77278942982195,1.3202953003677524,0.4149299730400099,4.351982986842028,3.7290603102783915,15.581579740193225,40.77800110355929,21807.2612716763,1965550.86207504,0.216687285961904,6011.120822870839,3214.1214039973675,19268.61376372296,16667350.905620359,1.4698630752879485,4725.356259221677,31898,100.08143445086705,447.3519135260115,6.8869684890747065,5.322176451873779,118.88280654363503,49.901527801995734,3,31.36099635220433,1,52.23403608981537,4,41.94384897205479,2,-0.23298997617594708,-0.839775965285527,1.1961642554044571,6.7386897203228635,75.49336242675781,482.8337097167969,0.0025742605794221163,1281,0.531854004824782,12361.739884393064,1114198.9901351999,0.15097312065766677,1164.8030388287104,8410.130230648443,6761.117615039936,5848366.737009545,1.4698630752879485,1866.2904471051659,18667,-0.6509321654181579,1.3599559208303047,1.3244679073808012,6.664755627049234,164.09771728515625,158.53150939941406,0.0071877529844641685,1095,0.531854004824782,0.49129486659390104,-0.23337203115750116,1.3324868856293228,6.659947669727432,167.4871826171875,121.24359130859375,0.008969193324446678,936,235,0,141,174,1034.9128108799998,9457.115082561417,37772,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,41,2.175489342439024,89.19506304,2.144034683968986,0.7465304283957774,1.6535187477595108,0.4507052108363055,0.6914184295754836,14248.227975756878,1270871.5925059263,0.16113873192489883,1.5211879025639092,2.544043731305334,2.5132184855664894,0.9778311083852536,8647.605706403749,771323.7361277461,21.305172632291033,3.277204129306977,4.2926829268292686,0.08414109108281835,3125.1646677154713,278749.2595472621,0.08527558300279586,0.8575964391790608,1.2310352886427236,1.1371342248149001,1.0028685189529558,586.5171597621311,52314.435039025026,0.08414109108281835,"CurrentSlice","Yes",1827.0529999732971,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",7,3,"D - 7",1,1,,,,1461,0,39,25,73.14828768,0.7788398712896999,0.9666843909778836,1.2057587254565374,0.5089940224695737,3.7466433013310554,1.7527032712749937,13.293717638042414,34.35444413802105,52658.692307692305,3851893.1737756794,0.19933374352330388,5922.170059105226,3207.3996859194494,49358.89058355437,34649941.18965517,1.5537262294449783,10496.654266734113,65535,478.5611162393162,449.6079794871795,5.3865747711181635,5.207117752075195,21.510941531408786,45.15502280340261,3,39.61749086370442,2,43.311352621033734,3,43.311352621033734,3,-0.8189570262720189,-0.2982524403728881,4.184219283934383,6.344252022580674,38.49305725097656,2645.916748046875,0.0004666747699957341,1152,0.04065156848469709,11891.725071225072,869859.32652144,0.22890767645275914,865.6304500187985,7653.68109636215,6965.105459156106,4889504.032327587,1.5537262294449783,2722.1071550691527,24208,0.2799060661158197,0.2786215594671324,1.530020048538567,6.502589168428778,83.9721908569336,160.22491455078125,0.007716091349720955,827,0.04065156848469709,1.3137951758529598,1.3895222171059487,1.7288820707624126,6.493683362647556,38.2333984375,791.7448120117188,0.002663427498191595,1054,1456,0,69,86,289.77975503999994,10211.258180510607,35327,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,1.4877421599999998,26.779358879999997,2.4879573782967155,0.7340382718814785,1.3469957894468316,0.5092122338708904,0.5166164983644833,13314.981375877209,356566.6647451319,0.16244496377588238,1.5765269928569248,2.7026607337937945,2.4178934773165652,0.9744925853437668,8388.361763808243,224634.95008829073,11.419091348379371,2.901986399875038,3.4444444444444446,-0.1695234345841624,5300.992060562895,141957.16880984444,0.09290465259165397,0.8485122590599276,1.6064577522298775,1.880422192690122,0.995537194883992,2001.1903364249638,53590.59420631204,-0.1695234345841624,"CurrentSlice","Yes",1341.5759999752045,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",7,4,"D - 7",1,1,,,,149,0,36,68,157.86275759999998,0.6096729265211165,0.7153593718247077,1.630139723843889,0.2206223421271819,6.399740197274342,2.900646789033828,22.973292963787316,57.04220689670175,22503.558415841584,3552473.7873374396,0.18647783397494352,9597.863723081862,3247.0156487313793,20016.237098683872,30324599.204506066,2.0383393136379007,4196.41483011475,34096,53.598649504950494,442.8298241584158,10.410056185913085,7.446931253814697,106.37955954909127,8.7421844754692,1,8.7421844754692,1,45.120046038713184,3,45.120046038713184,3,-0.09516907941938199,-0.15950940465986596,0.726290450827261,7.254766573382149,154.98971557617188,521.1968383789062,0.00225201272405684,2332,0.10849595231874716,15624.541254125412,2466533.1686111996,0.27299932963501977,2101.777050188926,7665.328902595568,10817.096540087285,16387901.258232236,2.0383393136379007,4265.489288230949,52179,2.012466717667232,8.540721148188538,0.7332614449563768,7.249155209529414,197.93994140625,277.0487060546875,0.004625294357538223,2381,0.10849595231874716,0.22349372445510043,-0.9534490526461905,0.6966637257785184,7.285308462531139,73.94732666015625,564.208984375,0.00400518300011754,2335,99,0,102,194,865.4838710399999,12058.096075126414,59806,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38,2.6187065052631575,99.51084719999999,1.5623969062067746,0.66560135512068,1.9447057650741821,0.4383786077667614,0.857776901466126,20060.46705218735,1996234.0715908494,0.1913544801011018,1.8950051521214135,4.172792043475645,3.7712278467051616,0.9718853236372541,15253.022338149221,1517841.1752297536,19.622140069528644,3.5396175604674807,4.052631578947368,0.1639001507946091,4420.521313169648,439889.82093916816,0.13559848326043908,0.8282945990810395,1.7772216571604924,1.6019828072480764,1.0045565909856575,1933.199996011936,192374.36941018436,0.1639001507946091,"CurrentSlice","Yes",1354.6900000572205,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",8,1,"D - 8",1,1,,,,1533,0,30,18,37.928741759999994,0.720130355332168,0.7254740068307713,1.3146440356546314,0.44263536852732943,2.8170746996242886,7.8427631695077,9.710862742310798,25.726670896614735,14960.395604395604,567428.9815065599,0.16235332888041262,1659.4933918473782,3327.007178959538,12215.772186674085,4446541.075949367,1.4954362166448516,2428.8700277415187,19069,498.7854164835165,450.84695604395597,4.558491625213622,3.307067184448242,-14.03631775404488,16.901505157487506,1,16.901505157487506,1,31.49626490221493,2,31.49626490221493,2,-0.5547194104729696,-0.5762250029803706,2.852916314454776,5.870494360692127,52.19120788574219,220.36923217773438,0.005174318794161081,455,-0.41683236485689884,13160.912087912087,499176.83590847993,0.20453279512113862,480.1559628723766,8800.717771460559,7540.168417026011,2744621.303797468,1.4954362166448516,2691.8381356842397,25291,1.513165183142018,2.6425933158074626,3.049148653544258,5.828600849779163,51.92823028564453,202.71292114257812,0.005839161109179258,418,-0.41683236485689884,1.1945260211879125,1.4005560978135447,2.7925371331964737,5.885728364660477,33.18119812011719,421.3726501464844,0.003479272359982133,585,1463,0,125,172,986.5640851199998,10099.51848331221,63009,1,0.31259951999999996,0.31259951999999996,3.2340725067158833,0.6669966587068398,0.9308423232128326,0.4999999997080522,0.21519999991212024,8267.666666666666,2584.4686315199997,0.22115581959055777,0,1.5012155390955393,2.535891318784478,0.9735011913977359,2760.351793248945,862.8846456007593,31.700426462136505,,,2752.6666666666665,860.48227872,0.14756237147495388,0,1.0029305473724424,0.9864125115210496,0.9690905819338268,8.043248945147752,2.5143157594936936,0.5409207443827937,0.5409207443827937,39,2.4580475076923074,95.86385279999999,1.9587590894081888,0.6809938444143907,1.5362030810567486,0.5037720232591838,0.6953240192410445,18793.606900793347,1801627.5655187173,0.18645592365452598,1.5866157315285416,3.343615720841198,3.2709886740264427,0.9617270371704589,13172.86322990727,1262801.421626363,18.084388588577763,3.4716344377499815,4.512820512820513,0.13967119748192428,3632.559226391177,348231.12296604563,0.08494785162642153,0.797411423566371,1.3235182659072364,1.2790086491588948,1.0015547184250018,887.9358086696584,85120.94765815709,0.13967119748192428,"CurrentSlice","Yes",1787.726000070572,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",8,2,"D - 8",1,1,,,,1371,0,28,27,56.16371375999999,0.7911566691232581,0.7239514748882632,1.112446238611612,0.6677639548525673,3.1533885306948046,3.865074104623932,10.994171837842085,29.867687172482807,22888.38589981447,1285496.7541055998,0.19488404876506904,3069.7593253938644,3071.3838542590283,19999.810685473083,10779897.959469993,1.5736339665427383,4460.581313853162,30140,447.55651057513916,449.30226567717995,5.105747735595703,3.6963136035919186,50.060663574835075,26.563196580523126,3,23.194229354442793,2,36.75584195019277,3,23.194229354442793,2,-0.6733909954093865,-0.47197515113539046,1.9241294088895466,6.263995823949445,51.428382873535156,512.2588500976562,0.002387735992670059,761,0.6898722130192101,13513.671614100185,758977.9843809599,0.1928666735167085,526.1803219187026,8587.55714569991,7597.241372478985,4094913.099766173,1.5736339665427383,2606.3368912086717,19137,-0.40412636643655137,-0.9094769247918792,2.0618130875220726,6.214157528949365,75.39227294921875,192.1812744140625,0.006101097445935011,673,0.6898722130192101,0.7380994149550969,0.3916989075876156,1.9172452249579206,6.2665677986454,46.069637298583984,289.1949768066406,0.004971386399120092,718,1368,0,61,114,401.89878287999994,13796.903811252268,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27,2.1032930666666667,56.78891279999999,1.4329956737023035,0.6927631211911596,1.2117107881878257,0.5711564270241192,0.6057149233151126,20639.2269958805,1172079.2621284637,0.18173847355095474,1.7473336161918676,3.488459451560272,3.44082164662387,0.9641563246349308,14722.7967542593,836091.6210497543,15.522137165323436,3.207167433168296,4.444444444444445,0.03631357010140299,3996.1390721929956,226936.39330744094,0.09298772751513995,0.8854311785421756,1.3834291218565826,1.4661542477236762,1.0014833061184234,1107.5638578516082,62897.34734396656,0.03631357010140299,"CurrentSlice","Yes",1800.8730001449585,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",8,3,"D - 8",1,1,,,,383,0,53,7,21.986166239999996,0.21760754807581462,0.1311728432464504,5.744963255434035,0.023096148941555317,4.483616303791483,4.225912801008949,16.788703559238872,35.632205793142454,20272.364928909952,445711.58540496,0.3007227185199004,1279.2402365258092,3259.5365980430956,17530.075643195665,3698845.9607142853,2.5581459096842885,6096.360692249288,31198,130.4678047393365,452.2183222748815,8.891045169067382,1.1662636742591856,-2.125411951682165,40.45632465049221,2,24.41296369939699,1,53.44362312919476,3,45.8202381821355,2,0.07456761648326932,-1.1964857521038437,4.829181734462389,5.338717902564977,16.953216552734375,437.7280578613281,0.003306460799649358,342,0.18943059374309051,20887.322274881517,459232.13984399993,0.12953363706222612,425.86018850126896,8165.023815025199,15741.261560595802,3321406.189285714,2.5581459096842885,2705.6108227562536,27449,-0.011498315211460572,-0.632650385396138,4.739336492890995,5.351858133476067,26.288389205932617,451.8726501464844,0.002379275392740965,267,0.18943059374309051,0.6038616005712396,-0.7920920965289189,4.739336492890995,5.351858133476067,17.91692352294922,2204.203125,0.00048780685756355524,325,239,0,234,62,892.1590300799999,10608.699252511096,36516,1,0.41679935999999995,0.41679935999999995,1.3962634015954636,0,1.9634954661505089,0,0.360901371568466,6141.25,2559.6690695999996,0.033909065342394,1.1638208762886597,0.892199770146551,1.8596590284746282,1.0174231630368409,0,0,13.367150998421257,,,2743.25,1143.38484432,0.03870372456802893,1.002723152277213,1.0003503329465346,1.0042308560898938,1.0251526474072723,0.9607142857144026,0.40042509942862015,0.5590382259511965,0.5590382259511965,25,2.5591480703999996,63.97870175999999,1.6776018130704164,0.6459831553323465,1.8546984029557496,0.34979543632600085,0.7997286857378534,17799.256904392867,1138773.349035772,0.14601116344358578,1.6736744160072619,3.4588120686142054,3.257807616676739,0.9861225456135776,12653.196190107152,809535.0653576336,24.294452390001787,4.106306632465683,3.68,0.03219779319236913,3729.5602451882664,238612.42262285255,0.07913462677070435,0.9376161302792546,1.360017072092679,1.334090149446123,0.9971273713659631,987.2709594739808,63164.31427249486,0.03219779319236913,"CurrentSlice","Yes",1813.973000049591,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +2,"D",8,4,"D - 8",1,1,,,,388,0,35,9,24.070163039999997,0.5131374023692242,0.2675225788339772,2.2320226604747617,0.1203560010249306,2.9241449882754957,6.331434210124218,10.97994603265426,24.278822069010523,18068.64502164502,434915.23158287996,0.20774974688525558,1414.5032271628165,3214.1214039973675,15432.255563372693,3564851.0351390922,1.4722206149015182,3753.7564298062866,25088,131.1140935064935,451.87807792207786,5.649567052459717,1.5113867471694946,2.4863245901948225,47.521455280078825,3,31.36099635220433,1,47.521455280078825,3,36.6653769566259,2,-0.4674536394996951,-0.7401403630098242,4.478926556848635,5.418412613359544,25.935293197631836,326.1970520019531,0.003768566297367215,340,-0.5443181289290276,12381.567099567099,298026.33877727995,0.12498350189717258,342.2743966683236,8410.130230648443,6680.84381991849,1543274.9224011712,1.4722206149015182,1547.4916150787142,18597,1.587523091920173,2.5825615215703577,4.441445999887558,5.424413887650107,40.468597412109375,172.23670959472656,0.006214399356395006,207,-0.5443181289290276,0.427612877404445,-0.5895324369515524,4.516407113809711,5.412411339068982,42.813663482666016,211.74534606933594,0.00481644831597805,161,323,0,161,148,986.3556854399999,8454.513310796536,31510,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,39,1.6805563938461536,65.54169936,2.212682731255144,0.7154893761481363,1.4303974818844079,0.4413016681958031,0.5580164652160808,14123.87818355441,925702.977703786,0.12186527723905624,1.3517648047119664,2.4775589851863504,2.491284656533761,0.9780849680507843,8423.1549039058,552067.8863745036,13.295118356502213,3.24379174839872,4.410256410256411,0.2721495334442793,3134.837897204731,205462.60300092702,0.06701897527826307,0.8468628866592274,1.189064797451832,1.140653962648352,1.0002711387093592,498.44843893240295,32669.15773096887,0.2721495334442793,"CurrentSlice","Yes",1827.0529999732971,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",7,3,"D - 7",1,1,,,,25,2,4,3,0.72939888,1.500400304239239,0.7664065012091633,1.0990994651048624,0.6409890128576662,0.3571997211873785,0.28580980178843535,0.9683999999999999,2.4716325517361404,2486.1428571428573,1813.3898155199997,0.052847623960429586,7.085387519431492,3207.3996859194494,0,0,0.7225468095046936,131.38674282619374,2714,8.531142857142855,451.96611428571424,0.5670132863044738,0.4345626688957214,-10.90195801735489,87.39021262803125,4,62.257517900220904,1,62.257517900220904,1,62.257517900220904,1,0.5059143042665268,-0.6044157320149997,142.85714285714286,1.9459101490553132,7,9,0.1111111119389534,7,-0.05663817380121885,5530.142857142857,4033.6800062399993,0.013596321750397565,7.081908594997339,7653.68109636215,0,0,0.7225468095046936,75.18960161137716,5643,0.4188088675867858,-1.14533362132022,142.85714285714286,1.9459101490553132,7,36,0.02777777798473835,7,-0.05663817380121885,0.24205528685110642,-0.9172437128241588,142.85714285714286,1.9459101490553132,7,4,0.25,7,24,0,5,6,1.8755971199999997,5491.055555555556,5643,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"CurrentSlice","Yes",1341.5759999752045,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",7,4,"D - 7",1,1,,,,476,0,73,38,203.29388783999997,0.6849256315490205,0.7420100504899658,1.2880789921231741,0.43141112357868583,6.455701765305358,9.248160481175805,24.398641067075843,61.07245572430597,18992.38390568939,3861035.5635374393,0.17905514180511733,12309.583445587019,3247.0156487313793,16320.083343059836,31840482.60230974,1.2212816293420086,3400.683993450442,30934,163.4403739620707,447.8217139928242,10.368852836608886,7.693793016815185,-14.838225293091257,37.62125886613123,1,37.62125886613123,1,59.458049972661094,3,48.96253298481198,2,-0.1568385204278603,0.2075222939241903,0.6029317457619415,7.459284103598926,209.83734130859375,374.73663330078125,0.003140060929581523,2582,0.08396291619568363,9361.525371604306,1903140.8889062398,0.15532609592921612,2406.6030967258675,7665.328902595568,4072.106163233958,7944679.124469452,1.2212816293420086,1454.089187913601,18451,1.181429017471926,4.385483614525902,0.7505777767502688,7.291125774925908,423.20751953125,96.24856567382812,0.011628114618360996,2265,0.08396291619568363,0.42599177029339624,-0.6334693273775804,0.5430326442221931,7.536212187218248,92.36630249023438,686.9122924804688,0.0032642772421240807,3033,131,0,619,371,6055.886301119999,7648.754052100898,56429,1,8.856986399999998,8.856986399999998,0.4224394503502739,0.7987290924673945,1.452102578014994,0.6658914376237012,1.4307102933222697,13939.894117647058,123465.45261743998,0.2833847619954836,1.357795670911959,2.475755008164375,4.209033716208047,1.0507851178481433,8309.331290680322,73595.63423465005,50.0713081842187,,,2811.4,24900.531564959998,0.07652613910293055,1.0167735324477662,1.0520523175108614,1.0556062916417224,1.006089584004924,139.09943737044705,1232.001825037701,0.1893406547791934,0.1893406547791934,362,1.800757455911602,651.8741990399999,2.2152821269916436,0.6628170418206512,1.6840177720038907,0.41335681956940507,0.6478313874770357,12753.447562293464,8313643.414668691,0.20250164553150055,1.4363789057815448,2.4111243711051515,2.397559162670187,0.969438958423305,7464.028353923116,4865607.50482548,79.44074802417765,3.0592344733316468,4.56353591160221,0.046020718766517206,3146.7615953077566,2051292.6945110762,0.07752290503994438,0.8211763821262532,1.177547780108736,1.140376353162963,1.0000648264578562,474.46103267820354,309288.90565279516,0.046020718766517206,"CurrentSlice","Yes",1354.6900000572205,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",8,1,"D - 8",1,1,,,,1585,0,24,30,56.05951391999999,0.8357483038938113,0.8493519764489719,1.086369855869268,0.6683886923986058,3.113318653791782,12.284303070168082,10.012005097881243,29.03299531041684,17269.10780669145,968097.7894751999,0.1462249231907985,2218.6627572857537,3327.007178959538,14565.368543925131,7836168.27663172,1.3696945921983519,2525.1739626070757,25839,515.5314,448.5594,4.747236668014526,4.03207484664917,105.17957983989506,16.901505157487506,1,16.901505157487506,1,47.279626731841695,2,16.901505157487506,1,0.322468155390655,0.4503797938734979,1.9692928511214602,6.246630475072717,78.32571411132812,306.5328674316406,0.003583268029615283,700,0.24319391271567387,12054.295539033457,675757.9485662399,0.1396330758836369,612.9986608767064,8800.717771460559,6500.294524491692,3497158.4541765302,1.3696945921983519,1683.1783637256447,18338,0.05879377600748864,0.8044746896651884,2.0453006453752716,6.219890341699179,114.02173614501953,152.90081787109375,0.00721730338409543,736,0.24319391271567387,1.4448028835445943,1.623085824650909,1.8863752573900305,6.277551538889517,35.72167205810547,483.9263000488281,0.00843367911875248,909,1492,0,172,291,1853.6109537599998,10624.089662150767,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,113,1.7003938492035398,192.14450495999998,2.2064898820563417,0.726422243103325,1.495477933138801,0.4564975638347127,0.5828387797693242,20442.0245948378,3927822.6961552533,0.1929005875026805,1.5435478513860825,3.6805943213397803,3.5578923873874246,0.9564658513363443,14888.023580296034,2860651.920668788,34.10022525837981,3.1079435655124827,5.168141592920354,0.12872702846467132,4467.834213824029,858469.7932585686,0.07785077711444295,0.76510475882244,1.6524648938421624,1.5731054186186035,0.9997097233269263,1764.0949510577116,338961.1510734194,0.12872702846467132,"CurrentSlice","Yes",1787.726000070572,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",8,2,"D - 8",1,1,,,,1411,0,35,35,92.84205743999999,0.7872915381694303,0.9560064745899886,1.095151479627185,0.813946149059578,4.022717421962785,4.434670930364884,12.984426869138273,38.49546041388912,21528.154882154882,1998718.1921462398,0.1779537030053035,5640.850791338533,3071.3838542590283,18781.824495414552,16734605.625414366,1.5573108679138146,3831.0148801511646,32271,461.60689831649825,448.32029090909083,5.812121475219726,5.556425761413574,64.02119597249461,26.35295749537971,3,16.690332392821894,2,32.61032375732314,3,16.690332392821894,2,-0.3752425501387127,0.393936259473608,1.200431802751294,6.744111963728142,91.69486236572266,462.600341796875,0.00255871145054698,1206,0.4455934983300025,13373.496071829406,1241622.8904743998,0.1353683250797019,1132.3067368406637,8587.55714569991,7422.679497243771,6613607.4320442,1.5573108679138146,1810.3477637035194,19495,0.012536731989781166,0.19828130125669974,1.2583749957487331,6.71026384041608,146.73153686523438,185.81784057617188,0.005911719985306263,1043,0.4455934983300025,1.5414221398054386,2.894066566528326,1.1903547257082612,6.750335507436873,77.1429672241211,453.11358642578125,0.0030009099282324314,1259,1410,0,64,146,548.2995580799999,11006.049030786773,30439,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27,1.659478933333333,44.805931199999996,2.390910143648554,0.752368493977266,1.386384373567353,0.4879232663282083,0.5443960665730421,16751.476390837473,750565.498666288,0.1319879368725334,1.547357061636869,2.8149878560160304,2.792684173201193,0.9715113320657237,10800.659816251838,483933.62064158445,21.476324949872527,3.2668149661701644,3.925925925925926,0.1266214974890666,3398.0099691876303,152251.00089633506,0.07756173798935222,0.872770069793583,1.2372910359196765,1.2467050470788104,0.9969319089075457,651.6795824472988,29199.11053557839,0.1266214974890666,"CurrentSlice","Yes",1800.8730001449585,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",8,3,"D - 8",1,1,,,,567,0,29,12,23.861763359999998,0.6171688366982809,0.482706043282639,1.6586787914384518,0.2564626211114991,2.5098193916227465,2.9993875352249644,9.044162448784299,22.0421627586807,8977.781659388645,214225.70145407994,0.18168526763513096,678.9058337317744,3259.5365980430956,6301.362556074806,1443012.0253411306,8.008105919486498,1631.1306635557962,11750,186.96322270742357,451.52390043668123,4.5212490234375,2.182434226799011,-8.305886276498072,51.6108543203737,6,45.452632774826235,1,48.91548597078168,3,45.6696925430687,2,-0.15014231416797907,-1.1620314837355614,4.481226521233386,5.415560942054853,36.53571319580078,83.95536041259766,0.013721534982323647,224,0.08551870706806669,65386.37554585153,1560234.2202431997,0.005566797075698933,1503.7505517209338,8165.023815025199,59957.693284642955,13730311.762183236,8.008105919486498,363.99268417919853,65535,-7.127288580920894,54.03954409457883,154.89788524246296,2.0628282478650655,35.566036224365234,4053.245361328125,0.0002468666061758995,53,0.08551870706806669,-0.5913124588797903,-0.2273528583772495,4.443088423180336,5.421614629221315,16.513813018798828,895.6077270507812,0.0015963815385475755,362,446,0,251,60,645.9348081599999,12005.048233586062,65535,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,1.45879776,14.587977599999999,1.8371450929542585,0.5476258436658866,1.321421305496198,0.4348649476860874,0.5266890032339594,21811.81426958662,318190.2579800899,0.12394954990397697,2.262887254623543,4.017883755224735,3.9922281611352184,0.9885651388521424,16383.132008378041,238996.76275606186,26.28228757581328,3.4968370114041476,2.4,0.1665622353978368,3518.2545057720054,51324.21792130108,0.0755468049832935,1.1235612356701339,1.3145379591020843,1.2585045878935617,0.9989085498998213,841.8354024581654,12280.6759939467,0.1665622353978368,"CurrentSlice","Yes",1813.973000049591,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" +3,"D",8,4,"D - 8",1,1,,,,507,0,51,51,179.744724,0.7864211676407837,0.5427667620273668,1.2159790687206697,0.4538570522665376,5.897951584469566,0.5781781933551463,21.258285586566004,53.59267200017403,18792.44,3377841.941086559,0.16962871189447137,8564.199574591179,3214.1214039973675,16029.908540829985,27651592.232931726,1.5928586167403762,3187.7373905541394,27941,172.61734678260868,445.637844173913,10.367776606750487,5.627284538269042,45.95208996960468,40.85718971324497,2,39.74462186544247,1,40.85718971324497,2,40.85718971324497,2,-0.2444254811517819,-0.035038272715823826,0.6859063222012182,7.335724514516564,203.3977813720703,357.0881652832031,0.0032279067672789097,2348,0.013451930769968614,13396.148405797101,2407886.99786304,0.16449460206450828,2402.031326046265,8410.130230648443,7790.34385425761,13438343.148594376,1.5928586167403762,2203.594101208691,27357,1.6732902232634272,5.6183861868579985,0.7490863264020163,7.2631834173332965,359.7182312011719,194.4753875732422,0.005726233124732971,2417,0.013451930769968614,1.8192206621757683,4.394429355865702,0.6395295106070154,7.382458210216208,156.02337646484375,340.3401184082031,0.004807353485375643,2652,479,0,117,81,651.6657993599999,10661.795970578829,34507,0,,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14,2.7389672228571422,38.34554111999999,1.685396491064729,0.6056774606647847,1.5688790459410489,0.39290753131343237,0.7863940640945083,18402.35877878962,705648.4052570703,0.13086783678940642,1.8820111643964685,3.28273285477566,3.245957907156806,0.9636341710017311,12796.55422725013,490690.7963153296,12.883555357213663,3.9152337417225445,2.4285714285714284,0.17656991232134445,5394.173566258994,206842.50429340126,0.14715894267896304,1.009963148102599,1.9526197786285633,1.9627443763687793,0.9889862634040079,2631.64210708898,100911.74063050392,0.17656991232134445,"CurrentSlice","Yes",1827.0529999732971,"2023-02-06 DAY1 iSMR IMR90 Phall Mito Dapi" From 34cc74cd1c3cc3f2ee1d565112365d1fe4bb21d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 20:09:20 +0000 Subject: [PATCH 2/2] Bump jinja2 from 3.1.2 to 3.1.3 Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.2 to 3.1.3. - [Release notes](https://github.com/pallets/jinja/releases) - [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/jinja/compare/3.1.2...3.1.3) --- updated-dependencies: - dependency-name: jinja2 dependency-type: indirect ... Signed-off-by: dependabot[bot] --- poetry.lock | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/poetry.lock b/poetry.lock index a9a6c599..fbd1e96d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1231,6 +1231,7 @@ files = [ {file = "greenlet-2.0.2-cp27-cp27m-win32.whl", hash = "sha256:6c3acb79b0bfd4fe733dff8bc62695283b57949ebcca05ae5c129eb606ff2d74"}, {file = "greenlet-2.0.2-cp27-cp27m-win_amd64.whl", hash = "sha256:283737e0da3f08bd637b5ad058507e578dd462db259f7f6e4c5c365ba4ee9343"}, {file = "greenlet-2.0.2-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:d27ec7509b9c18b6d73f2f5ede2622441de812e7b1a80bbd446cb0633bd3d5ae"}, + {file = "greenlet-2.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d967650d3f56af314b72df7089d96cda1083a7fc2da05b375d2bc48c82ab3f3c"}, {file = "greenlet-2.0.2-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:30bcf80dda7f15ac77ba5af2b961bdd9dbc77fd4ac6105cee85b0d0a5fcf74df"}, {file = "greenlet-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26fbfce90728d82bc9e6c38ea4d038cba20b7faf8a0ca53a9c07b67318d46088"}, {file = "greenlet-2.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9190f09060ea4debddd24665d6804b995a9c122ef5917ab26e1566dcc712ceeb"}, @@ -1239,6 +1240,7 @@ files = [ {file = "greenlet-2.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:76ae285c8104046b3a7f06b42f29c7b73f77683df18c49ab5af7983994c2dd91"}, {file = "greenlet-2.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:2d4686f195e32d36b4d7cf2d166857dbd0ee9f3d20ae349b6bf8afc8485b3645"}, {file = "greenlet-2.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c4302695ad8027363e96311df24ee28978162cdcdd2006476c43970b384a244c"}, + {file = "greenlet-2.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d4606a527e30548153be1a9f155f4e283d109ffba663a15856089fb55f933e47"}, {file = "greenlet-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c48f54ef8e05f04d6eff74b8233f6063cb1ed960243eacc474ee73a2ea8573ca"}, {file = "greenlet-2.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1846f1b999e78e13837c93c778dcfc3365902cfb8d1bdb7dd73ead37059f0d0"}, {file = "greenlet-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a06ad5312349fec0ab944664b01d26f8d1f05009566339ac6f63f56589bc1a2"}, @@ -1268,6 +1270,7 @@ files = [ {file = "greenlet-2.0.2-cp37-cp37m-win32.whl", hash = "sha256:3f6ea9bd35eb450837a3d80e77b517ea5bc56b4647f5502cd28de13675ee12f7"}, {file = "greenlet-2.0.2-cp37-cp37m-win_amd64.whl", hash = "sha256:7492e2b7bd7c9b9916388d9df23fa49d9b88ac0640db0a5b4ecc2b653bf451e3"}, {file = "greenlet-2.0.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:b864ba53912b6c3ab6bcb2beb19f19edd01a6bfcbdfe1f37ddd1778abfe75a30"}, + {file = "greenlet-2.0.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1087300cf9700bbf455b1b97e24db18f2f77b55302a68272c56209d5587c12d1"}, {file = "greenlet-2.0.2-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:ba2956617f1c42598a308a84c6cf021a90ff3862eddafd20c3333d50f0edb45b"}, {file = "greenlet-2.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc3a569657468b6f3fb60587e48356fe512c1754ca05a564f11366ac9e306526"}, {file = "greenlet-2.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8eab883b3b2a38cc1e050819ef06a7e6344d4a990d24d45bc6f2cf959045a45b"}, @@ -1276,6 +1279,7 @@ files = [ {file = "greenlet-2.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b0ef99cdbe2b682b9ccbb964743a6aca37905fda5e0452e5ee239b1654d37f2a"}, {file = "greenlet-2.0.2-cp38-cp38-win32.whl", hash = "sha256:b80f600eddddce72320dbbc8e3784d16bd3fb7b517e82476d8da921f27d4b249"}, {file = "greenlet-2.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:4d2e11331fc0c02b6e84b0d28ece3a36e0548ee1a1ce9ddde03752d9b79bba40"}, + {file = "greenlet-2.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8512a0c38cfd4e66a858ddd1b17705587900dd760c6003998e9472b77b56d417"}, {file = "greenlet-2.0.2-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:88d9ab96491d38a5ab7c56dd7a3cc37d83336ecc564e4e8816dbed12e5aaefc8"}, {file = "greenlet-2.0.2-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:561091a7be172ab497a3527602d467e2b3fbe75f9e783d8b8ce403fa414f71a6"}, {file = "greenlet-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:971ce5e14dc5e73715755d0ca2975ac88cfdaefcaab078a284fea6cfabf866df"}, @@ -1371,13 +1375,13 @@ files = [ [[package]] name = "jinja2" -version = "3.1.2" +version = "3.1.3" description = "A very fast and expressive template engine." optional = false python-versions = ">=3.7" files = [ - {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, - {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, + {file = "Jinja2-3.1.3-py3-none-any.whl", hash = "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa"}, + {file = "Jinja2-3.1.3.tar.gz", hash = "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90"}, ] [package.dependencies] @@ -3555,4 +3559,4 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.13" -content-hash = "f6e9629bdaa0165902afcf5388b082f69d216277beedf7b42bd7fbb315dce0f7" +content-hash = "a82afeca765b8c0459d5ed8eed58670d1f9d0da88487bb0371e5ebdda03d7527"